Skip to content

Instantly share code, notes, and snippets.

@leotop
Forked from vadim-ontech/init.php
Created December 28, 2016 09:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leotop/abd1834e69ea2f05228ff6d1971e6a72 to your computer and use it in GitHub Desktop.
Save leotop/abd1834e69ea2f05228ff6d1971e6a72 to your computer and use it in GitHub Desktop.
Bitrix custom_mail function with PHPMailer
<?
function custom_mail($to, $subject, $message, $additional_headers, $additional_parameters){
//Получаем тему письма
$elements = imap_mime_header_decode($subject);
$title = '';
for ($i=0; $i<count($elements); $i++) {
$title .= $elements[$i]->text;
}
//В файле PHPMailerAutoload.php на строке 24
//добавляем проверку
//if( !function_exists('PHPMailerAutoload') ){}
require_once($_SERVER['DOCUMENT_ROOT'].'/cron/phpmailer/PHPMailerAutoload.php');
$mail = new PHPMailer;
$mail->SMTPDebug = true;
$mail->isSMTP();
$mail->CharSet = 'UTF-8';
$mail->setLanguage('ru');
// Set mailer to use SMTP
$mail->Host = 'smtp.yandex.ru'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = ''; // SMTP username
$mail->Password = ''; // SMTP password
$mail->SMTPSecure = 'ssl'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465;
$mail->From = 'email@from';
$mail->FromName = 'Test';
$mail->isHTML(true);
$mail->Subject = $text;
$mail->Body = $message;
$mail->addAddress($to);
if(!$mail->send()) {
echo $mail->ErrorInfo;
}
$mail->clearAddresses();
$mail->ClearCustomHeaders();
}
@GTAlex
Copy link

GTAlex commented Sep 8, 2020

error
$mail->Subject = **$title;**

adding
if(strstr($to, ',')) { $arr = preg_split("!,!", $to); foreach ($arr as $addr) { $addr = trim($addr, " \x00..\x1F"); $mail->addAddress($addr); } } else { $mail->addAddress($to); }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment