bendasvadim

Отправка почты в сниппете modx

<?php
$to    = 'site@gmail.com';
$theme = 'Site URL: ' . $modx->getOption('site_url');
$body  = 'Test mail message';
$from  = $modx->getOption('emailsender');

$modx->getService('mail', 'mail.modPHPMailer');
$modx->mail->address('to', $to);
$modx->mail->set(modMail::MAIL_FROM, $from);
$modx->mail->set(modMail::MAIL_FROM_NAME, 'Console');
$modx->mail->set(modMail::MAIL_SUBJECT, $theme);
$modx->mail->set(modMail::MAIL_BODY, $body);
$modx->mail->setHTML(true);
if (!$modx->mail->send()) {
    echo 'Sending failed. Error: ' . $modx->mail->mailer->ErrorInfo;
} else {
    echo 'Success';
}
$modx->mail->reset();


16 февраля 2018, 14:17    bendasvadim MODX Revolution 0    1207 0

Комментарии ()