Ignore:
Timestamp:
2007/10/09 01:27:07 (19 years ago)
Author:
naka
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/downloads/module2/mdl_speedmail/SC_SendMail_Ex.php

    r16330 r16339  
    88// {{{ requires 
    99require_once(CLASS_PATH . "SC_SendMail.php"); 
     10require_once(realpath(dirname( __FILE__)) . "/include.php"); 
    1011 
    1112/** 
     
    2223        parent::SC_SendMail(); 
    2324    } 
     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    }    
    2437} 
    2538?> 
Note: See TracChangeset for help on using the changeset viewer.