Newer
Older
<?php
/******************************************************************************/
/* begin */
// load the config and prepare to process
include('load_process_email_stack.php');
$state = 'LOAD_EMAILS';
while ($state <> 'END') {
if (isset($GLOBALS['logger'])) {
$GLOBALS['logger']->write('STATE:' . $state, 'INFO');
}
switch ($state) {
/**********************************************************************/
/* LOAD_NOTIFS */
/* List the stack to proceed */
/**********************************************************************/
case 'LOAD_EMAILS' :
$query = "SELECT count(1) as count FROM " . _NOTIF_EMAIL_STACK_TABLE_NAME
. " WHERE exec_date is NULL";
$stmt = Bt_doQuery($GLOBALS['db'], $query, array());
$totalEmailsToProcess = $stmt->fetchObject()->count;
$query = "SELECT * FROM " . _NOTIF_EMAIL_STACK_TABLE_NAME
. " WHERE exec_date is NULL";
$stmt = Bt_doQuery($GLOBALS['db'], $query, array());
$currentEmail = 0;
if ($totalEmailsToProcess === 0) {
$GLOBALS['logger']->write($totalEmailsToProcess . ' notification(s) to send.', 'INFO');
$GLOBALS['emails'][] = $emailRecordset;
/**********************************************************************/
/* SEND_AN_EMAIL */
/* Load parameters and send an e-mail */
/**********************************************************************/
case 'SEND_AN_EMAIL' :
if($currentEmail < $totalEmailsToProcess) {
$email = $GLOBALS['emails'][$currentEmail];
$GLOBALS['mailer'] = new htmlMimeMail();
$GLOBALS['mailer']->setSMTPParams(
$host = (string)$mailerParams->smtp_host,
$port = (string)$mailerParams->smtp_port,
$helo = (string)$mailerParams->domains,
$auth = filter_var($mailerParams->smtp_auth, FILTER_VALIDATE_BOOLEAN),
$user = (string)$mailerParams->smtp_user,
$pass = (string)$mailerParams->smtp_password
);
$GLOBALS['logger']->write("sending notification ".($currentEmail+1)."/".$totalEmailsToProcess." (TO => " . $email->recipient.', SUBJECT => '.$email->subject.' ) ...', 'INFO');
$email->html_body = str_replace('#and#', '&', $email->html_body);
$email->html_body = str_replace("\''", "'", $email->html_body);
$email->html_body = str_replace("\'", "'", $email->html_body);
$email->html_body = str_replace("''", "'", $email->html_body);
$GLOBALS['mailer']->setReturnPath($email->sender);
$GLOBALS['mailer']->setFrom($email->sender);
//$GLOBALS['logger']->write("Subject : " . $email->subject, 'INFO');
$GLOBALS['mailer']->setSubject($email->subject);
$GLOBALS['mailer']->setHtml($email->html_body);
$GLOBALS['mailer']->setTextCharset((string)$email->charset);
$GLOBALS['mailer']->setHtmlCharset((string)$email->charset);
$GLOBALS['mailer']->setHeadCharset((string)$email->charset);
if($email->attachments != '') {
$attachments = explode(',', $email->attachments);
foreach($attachments as $num => $attachment) {
if(is_file($attachment)) {
$ext = strrchr($attachment, '.');
$name = str_pad(($num + 1), 4, '0', STR_PAD_LEFT) . $ext;
$ctype = '';
switch($ext) {
case '.pdf':
$ctype = 'application/pdf';
break;
}
$file_content = $GLOBALS['mailer']->getFile($attachment);
$GLOBALS['mailer']->addAttachment($file_content, $name, $ctype);
}
}
}
$return = $GLOBALS['mailer']->send(array($email->recipient), (string)$mailerParams->type);
// if($return == 1) {
if( ($return == 1 && ((string)$mailerParams->type == "smtp" || (string)$mailerParams->type == "mail" )) || ($return == 0 && (string)$mailerParams->type == "sendmail")) {
$GLOBALS['logger']->write("notification sent", 'INFO');
//$GLOBALS['logger']->write("Errors when sending message through SMTP :" . implode(', ', $GLOBALS['mailer']->errors), 'ERROR');
$err++;
$GLOBALS['logger']->write("SENDING EMAIL ERROR ! (" . $return[0].")", 'ERROR');
$errTxt = ' (Last Error : '.$return[0].')';
$GLOBALS['exitCode'] = 108;
}
$query = "UPDATE " . _NOTIF_EMAIL_STACK_TABLE_NAME
. " SET exec_date = CURRENT_TIMESTAMP, exec_result = ? "
. " WHERE email_stack_sid = ?";
Bt_doQuery($GLOBALS['db'], $query, array($exec_result, $email->email_stack_sid));
$currentEmail++;
$state = 'SEND_AN_EMAIL';
} else {
$state = 'END';
}
$GLOBALS['logger']->write($emailSent.' notification(s) sent', 'INFO');
$totalEmailsToProcess, $err, $emailSent.' notification(s) sent'.$errTxt
unlink($GLOBALS['lckFile']);