//Create new template and set param to substitute in template
$template = (new Template ())
->setTemplateName ( "test" )
->addKeyVal ( (new KeyVal ())
->setKey ( "Name" )
->setVal ( "Mauro" ) )
->addKeyVal ( (new KeyVal ())
->setKey ( "Surname" )
->setVal ( "Cerone" ) )
->addKeyVal ( (new KeyVal ())
->setKey ( "NickName" )
->setVal ( "ceronem" ) );
//Create contact, FROM and A
$a = (new Contact ())->setAddress("[email protected]");
$from = (new Contact())->setAddress("[email protected]");
//Add contact and template to Email object
$email = (new Email())
->setTemplate($template)
->setFrom($from)
->addA($a)
->setSubject("Test Email");
//Add email to the send queue
STeSI\MailDispatcher\Mailer::addMailToSend($email);
//Send all mail in send queue
STeSI\MailDispatcher\Mailer::startSendOperation();
-
Notifications
You must be signed in to change notification settings - Fork 0
License
stesi/mail-dispatcher
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published