hedera-web/rest/misc/mail.php

57 lines
1.2 KiB
PHP
Raw Normal View History

<?php
require_once ('libphp-phpmailer/PHPMailerAutoload.php');
class Mail extends Vn\Lib\Method
{
2016-09-23 22:47:34 +00:00
function run ($db)
{
2016-08-31 11:53:46 +00:00
$db->selectDb ('vn2008');
$db->query ('START TRANSACTION');
$mailer = new Vn\Web\Mailer ($db);
$res = $db->query (
'SELECT * FROM mail WHERE sent = 0 ORDER BY DATE_ODBC DESC
LIMIT 20 FOR UPDATE');
2016-08-31 11:53:46 +00:00
$count = 0;
while ($row = $res->fetch_object ())
{
$sent = 1;
$status = 'OK';
try {
$mail = $mailer->createObject ($row->to, $row->text, $row->subject);
2017-11-29 12:55:51 +00:00
$mail->AddReplyTo ($row->reply_to, $row->reply_to);
if (!empty ($row->path))
{
$attachment = '/mnt/cluster/pdfs/'. $row->path;
if (file_exists ($attachment))
$mail->AddAttachment ($attachment, '');
else
throw new Exception ("Attachment file could not be found: $attachment");
}
if (!$mail->Send ())
throw new Exception ('Send error: '.$mail->ErrorInfo);
2016-08-31 11:53:46 +00:00
$count++;
}
catch (Exception $e)
{
$sent = 2;
$status = $e->getMessage ();
}
$db->query ('UPDATE mail SET sent = #, error = # WHERE id = #',
2017-11-29 12:55:51 +00:00
[$sent, $status, $row->id]);
}
$db->query ('COMMIT');
2016-08-31 11:53:46 +00:00
echo "Total $count mails sent\n";
}
}