$modx->mail->address('to', $email);
$modx->mail->set(modMail::MAIL_SUBJECT, $title);
$modx->mail->set(modMail::MAIL_BODY, $modx->getChunk('standardEmailTemplate'));
$modx->mail->setHTML(true);
if (!$modx->mail->send()) {
$modx->log(modX::LOG_LEVEL_ERROR,'An error occurred while trying to send the email: '.$modx->mail->mailer->ErrorInfo);
}
$modx->mail->reset();
В modx3 нет getService
есть, просто depricated
Обсуждают сегодня