public static function sendByPhpMail($from, $recipients, $subject, $body)
 {
     $mailSender = new MailSender();
     return $mailSender->sendHtml($from, $recipients, $subject, $body);
 }