$modx->getService('mail', 'mail.modPHPMailer');
$modx->mail->set(modMail::MAIL_BODY,$message);
$modx->mail->set(modMail::MAIL_FROM,'mymail@mail.ru');
$modx->mail->set(modMail::MAIL_FROM_NAME,'Имя');
$modx->mail->set(modMail::MAIL_SENDER,'noreply@mail.ru');
$modx->mail->set(modMail::MAIL_SUBJECT,'Тема');
$modx->mail->address('to', 'email@mail.ru');
$modx->mail->setHTML(true);
$sent = $modx->mail->send();
if ($sent) {
$output = 'Mail sent';
} else {
$output = 'An error occurred while trying to send the email'.$modx->mail->mailer->ErrorInfo;
}
$modx->log(modX::LOG_LEVEL_ERROR,$log_prefix.$output);