Last active
March 27, 2020 06:41
-
-
Save dzhuryn/628602b7baca906f656bc541dd80412f to your computer and use it in GitHub Desktop.
Mail Sender
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Helpers\Mailer; | |
require_once MODX_BASE_PATH.'assets/lib/Helpers/Mailer.php'; | |
$mailConfig = array( | |
'isHtml' => 1, | |
'to' => '[email protected]', | |
'subject' => 'Тема Письма', | |
'from' => $modx->getConfig('emailsender'), | |
'fromName' => $modx->getConfig('site_name'), | |
); | |
$attachments = [ | |
[ | |
'filepath' => MODX_BASE_PATH.'assets/images/test.jpg', //абсолютный путь | |
'filename' => 'test.jpg' //название | |
] | |
]; | |
$mailer = new Mailer($modx, $mailConfig); | |
$mailer->attachFiles($attachments); | |
$sendStatus = $mailer->send('Сообщение'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment