getService('mail', 'mail.modPHPMailer'); $modx->mail->set(modMail::MAIL_BODY, 'This is a test message'); $modx->mail->set(modMail::MAIL_FROM, 'no-reply@promtk.com'); $modx->mail->set(modMail::MAIL_FROM_NAME, 'ПромТехКомплект'); $modx->mail->set(modMail::MAIL_SUBJECT, 'Test message'); $modx->mail->address('to', 'pamparampam93@yandex.ru'); // Укажите ваш email $modx->mail->setHTML(true); if (!$modx->mail->send()) { echo 'Error: ' . $modx->mail->mailer->ErrorInfo; } else { echo 'Email sent successfully!'; } $modx->mail->reset(); ?>