X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=NotifySend.php;h=91afa5a1b7c52f06a0e3f6f3f8841f1314150fed;hp=f6cc95f307e1ed1c3d1d0f099177b585f6f51dad;hb=586e4eb470252d837ba18b67e4c3c1702131fd1d;hpb=aa7d5c24d6a64a2299c37bd47021f0488b9da57d diff --git a/NotifySend.php b/NotifySend.php index f6cc95f3..91afa5a1 100644 --- a/NotifySend.php +++ b/NotifySend.php @@ -289,8 +289,8 @@ class Pman_Core_NotifySend extends Pman $ff = HTML_FlexyFramework::get(); - - $dom = array_pop(explode('@', $p->email)); + $explode_email = explode('@', $p->email); + $dom = array_pop($explode_email); $mxs = $this->mxs($dom); $ww = clone($w); @@ -549,7 +549,7 @@ class Pman_Core_NotifySend extends Pman // handle no host availalbe forever... if (strtotime($w->act_start) < strtotime('NOW - 3 DAYS')) { $ev = $this->addEvent('NOTIFY', $w, "RETRY TIME EXCEEDED - ". $p->email); - $w->sent = $w->sent == '0000-00-00 00:00:00' ? $w->sqlValue('NOW()') :$w->sent; // do not update if sent..... + $w->sent = (!$w->sent || $w->sent == '0000-00-00 00:00:00') ? $w->sqlValue('NOW()') : $w->sent; // do not update if sent..... $w->msgid = ''; $w->event_id = $ev->id; $w->domain_id = $core_domain->id; @@ -622,7 +622,11 @@ class Pman_Core_NotifySend extends Pman return $object->$m($rcpt, $last_sent_date, $notify, $force); } - if (!method_exists($object, 'toEmail')) { + if (method_exists($object, 'toMailerData')) { + return $object->toMailerData(array( + 'rcpts'=>$rcpt, + 'person'=>$rcpt, // added as mediaoutreach used this? + )); //this is core_email - i think it's only used for testing... //var_Dump($object); //exit; }