NotifySend.php
authorleon <leon@roojs.com>
Fri, 4 Mar 2022 04:26:25 +0000 (12:26 +0800)
committerleon <leon@roojs.com>
Fri, 4 Mar 2022 04:26:25 +0000 (12:26 +0800)
NotifySend.php

index 852da2c..3054726 100644 (file)
@@ -101,6 +101,15 @@ class Pman_Core_NotifySend extends Pman
         if (!$w->get($id)) {
             $this->errorHandler("invalid id\n");
         }
+
+        $ev = $this->addEvent('NOTIFYFAIL', $w, "TEST ERROR 2" );
+        $ww = clone($w);
+        $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->update($ww);
+        $this->errorHandler(date('Y-m-d h:i:s') . " - FAILED -  BAD EMAIL - {$p->email} \n");
+        
         if (!$force && strtotime($w->act_when) < strtotime($w->sent)) {