Changeset 12917
- Timestamp:
- 2007/05/16 17:46:24 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/html/admin/mail/sendmail.php
r12916 r12917 97 97 $body = $mailbody; 98 98 99 $ mail_object=& Mail::factory("SMTP", $mail_send);100 $ mail_object->send($recipients, $header, $body);99 $objMail =& Mail::factory("SMTP", $mail_send); 100 $result = $objMail->send($recipients, $headers, $body); 101 101 if (PEAR::isError($result)) { 102 102 die($result->getMessage());
Note: See TracChangeset
for help on using the changeset viewer.