Changeset 16339 for branches/feature-module-update/data/downloads/module2/mdl_speedmail/SC_SendMail_Ex.php
- Timestamp:
- 2007/10/09 01:27:07 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/downloads/module2/mdl_speedmail/SC_SendMail_Ex.php
r16330 r16339 8 8 // {{{ requires 9 9 require_once(CLASS_PATH . "SC_SendMail.php"); 10 require_once(realpath(dirname( __FILE__)) . "/include.php"); 10 11 11 12 /** … … 22 23 parent::SC_SendMail(); 23 24 } 25 26 // TXTメール送信を実行する 27 function sendMail() { 28 $this->setReturnPath(ERROR_MAIL); 29 return parent::sendMail(); 30 } 31 32 // HTMLメール送信を実行する 33 function sendHtmlMail() { 34 $this->setReturnPath(ERROR_MAIL); 35 return parent::sendHtmlMail(); 36 } 24 37 } 25 38 ?>
Note: See TracChangeset
for help on using the changeset viewer.
