composer require envialosimple/transaccional
use EnvialoSimple\Transaccional;
use EnvialoSimple\Transaccional\Helpers\Builder\MailParams;
$estr = new Transaccional($your_api_key);
$mailParams = new MailParams();
$mailParams
->setFrom('[email protected]', 'MyCompany Notifications')
->setTo('[email protected]', 'John Doe')
->setReplyTo('[email protected]')
->setPreviewText('A glimpse of what comes next...')
->setSubject('This is a subject')
->setHtml('<h1>HTML emails are cool, {{ name }}</h1>')
->setText('Text emails are also cool, {{ name }}')
->setContext(['name' => 'John'])
;
$estr->mail->send($mailParams);