From 62b83b33f4c77f3742f702cb78a7ce5a3c2377e0 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 30 Nov 2015 14:49:25 +0800 Subject: [PATCH] NotifySend.php --- NotifySend.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/NotifySend.php b/NotifySend.php index fed4eae8..df780801 100644 --- a/NotifySend.php +++ b/NotifySend.php @@ -400,9 +400,11 @@ class Pman_Core_NotifySend extends Pman // 'debug' => true )); $email['headers']['Subject'] = "(CC): " . $email['headers']['Subject']; - $cmailer->send($email['bcc'], + $res = $cmailer->send($email['bcc'], $email['headers'], $email['body']); - + if (!$res) { + echo "could not send bcc..\n"; + } } -- 2.39.2