CVSROOT:        /cvsroot/phpgwapi
Module name:    phpgwapi
Branch:         
Changes by:     Dave Hall <[EMAIL PROTECTED]>   06/04/03 03:24:48

Modified files:
        inc/phpmailer  : class.phpmailer.php 

Log message:
        add missing methods

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/phpgwapi/inc/phpmailer/class.phpmailer.php.diff?tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: phpgwapi/inc/phpmailer/class.phpmailer.php
diff -u phpgwapi/inc/phpmailer/class.phpmailer.php:1.1 
phpgwapi/inc/phpmailer/class.phpmailer.php:1.2
--- phpgwapi/inc/phpmailer/class.phpmailer.php:1.1      Mon Apr  3 03:01:27 2006
+++ phpgwapi/inc/phpmailer/class.phpmailer.php  Mon Apr  3 03:24:48 2006
@@ -329,7 +329,21 @@
         $this->ReplyTo[$cur][1] = $name;
     }
 
+    /**
+     * Get the headers of the message sent
+     * @return string message headers
+     */
+    function getHeader(){
+        return $this->sentHeader;
+    }
 
+   /**
+    * Get the body of the message sent
+    * @returns string message body
+    */
+   function getBody(){
+       return $this->sentBody;
+   }
     /////////////////////////////////////////////////
     // MAIL SENDING METHODS
     /////////////////////////////////////////////////
@@ -1496,4 +1510,4 @@
     }
 }
 
-?>
\ No newline at end of file
+?>


_______________________________________________
Phpgroupware-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/phpgroupware-cvs

Reply via email to