SimpleExcel.php
[Pman.Core] / MessagePreview.php
index 8e61cce..f59cde1 100644 (file)
@@ -18,7 +18,7 @@ class Pman_Core_MessagePreview extends Pman
         return true;
     }
     
-    function get()
+    function get($v, $opts=array())
     {
         if(empty($_REQUEST['_id']) || empty($_REQUEST['_table'])){
             $this->jerr('Missing Options');
@@ -34,7 +34,7 @@ class Pman_Core_MessagePreview extends Pman
         
     }
     
-    function post()
+    function post($v)
     {
         if(empty($_REQUEST['_id']) || empty($_REQUEST['_table'])){
             $this->jerr('Missing Options');
@@ -57,7 +57,11 @@ class Pman_Core_MessagePreview extends Pman
         
         $cn->insert();
         
-        $cn->sendManual();
+        $sent = $cn->sendManual();
+        
+        if(get_class($sent) != 'Pman_Core_NotifySend_Exception_Success'){
+            $this->jerr($sent->getMessage());
+        }
         
         $this->jok("SUCCESS");
         
@@ -109,6 +113,8 @@ class Pman_Core_MessagePreview extends Pman
 
         $content = $x->{$method}($this, $this->authUser);
         
+        $content['bcc'] = array();
+        
         $sent = $core_email->send($content);
         
         if(is_object($sent)){