buldurmert/email-task

There is no license information available for the latest version (dev-master) of this package.

Basic Email Tasking helper

dev-master 2019-03-19 00:27 UTC

This package is auto-updated.

Last update: 2025-04-19 14:09:58 UTC


README

Welcome to basic email sender management program

  1. Import to Sql your database.

You can use the following code to add a transaction to the database.

$processor->add("buldurmert@gmail.com","test","Merhaba bu task ile gönderiliyor...");

forward to a future date.

$processor->add("buldurmert@gmail.com","test","Merhaba bu task ile gönderiliyor...","2019-03-21 12:00:00");

$processor->start(); // sender mail method

--- index.php ----

add("buldurmert@gmail.com","test","Merhaba bu task ile gönderiliyor..."); $processor->add("buldurmert@gmail.com","test","Merhaba bu task ile gönderiliyor...","2019-03-21 12:00:00"); // Start Task $processor->start();