Наверх

Проверка отправки почты в MODX

Запустить код в дополнении Console:
<?php
$to    = 'site@mail.ru';
$theme = 'Site URL: ' . MODX_HTTP_HOST;
$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();


1 комментарий

  1. Никита 13 августа 2019, 17:56 # 0
    спасибо!

    Авторизация

    через сервис Loginza:


    Шаблоны MODX

    1 2 Дальше »

    Объектная
    модель
    MODX