1. Go to this page and download the library: Download 2amigos/mailer library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$message = new \Da\Mailer\Model\MailMessage([
'from' => '[email protected]',
'to' => '[email protected]',
'subject' => 'What is up?',
'textBody' => 'I hope to find you well...'
]);
// or
$message->bodyHtml = "I hope I'm finding doing <b>well.</b>"
// body html takes priority over body text with both were set.
$mailJob->getMessage(); // returns the MailJob message
$mailJob->markAsCompleted(); // void, mark the job as completed
$mailJob->isCompleted(); // returns true if the job has been complete
$mailJob->setMessage(new \Da\Mailer\Model\MailMessage()); // change the job's message
$message = new \Da\Mailer\Model\MailMessage([
'from' => '[email protected]',
'to' => '[email protected]',
'subject' => 'What is up?',
'textBody' => 'I hope to find you well...'
]);
$mailer = \Da\Mailer\Builder\MailerBuilder::make();
// or if you want to set a transport different from the default
$mailer = \Da\Mailer\Builder\MailerBuilder::make(\Da\Mailer\Enum\TransportType::SEND_MAIL);
$mailer->send($message); // returns \Symfony\Component\Mailer\SentMessage::class|null
$queue = \Da\Mailer\Builder\QueueBuilder::make();
// if you want to use a different broker than the default
$queue = \Da\Mailer\Builder\QueueBuilder::make(\Da\Mailer\Enum\MessageBrokerEnum::BROKER_RABBITMQ);