Changeset 29


Ignore:
Timestamp:
2007/01/24 22:22:53 (17 years ago)
Author:
naka
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/class/GC_SendMail.php

    r17 r29  
    5656        $this->header       .= "Bcc: " . $bcc . "\n"; 
    5757        $this->header       .= "Errors-To: ". $errors_to ."\n"; 
    58         $this->return_path   = $return_path; 
     58        // return_path¤Ï¡¢¥á¡¼¥ë¥Ø¥Ã¥À¡¼¾å¤Ë·Ù¹ð¤¬É½¼¨¤µ¤ì¤ë¤Î¤ÇÍøÍѤ·¤Ê¤¤¡£ 
     59        $return_path = ""; 
    5960    } 
    6061 
     
    7374        $this->header       .= "Bcc: " . $bcc . "\n"; 
    7475        $this->header       .= "Errors-To: ". $errors_to ."\n"; 
    75         $this->return_path   = $return_path; 
     76        // return_path¤Ï¡¢¥á¡¼¥ë¥Ø¥Ã¥À¡¼¾å¤Ë·Ù¹ð¤¬É½¼¨¤µ¤ì¤ë¤Î¤ÇÍøÍѤ·¤Ê¤¤¡£ 
     77        $return_path = ""; 
    7678    } 
    7779 
     
    8082 
    8183        Mb_language( "Japanese" ); 
    82          
     84                 
    8385        //¡¡¥á¡¼¥ëÁ÷¿® 
    84         if( mb_send_mail( $this->to, $this->subject, $this->body, $this->header, "" . $this->return_path ) ) { 
     86        if( mb_send_mail( $this->to, $this->subject, $this->body, $this->header) ) { 
    8587            return true; 
    8688        } 
     
    9395         
    9496        //¡¡¥á¡¼¥ëÁ÷¿® 
    95         if( mail( $this->to, $this->subject, $this->body, $this->header, "" . $this->return_path ) ) { 
     97        if( mail( $this->to, $this->subject, $this->body, $this->header) ) { 
    9698            return true; 
    9799        } 
Note: See TracChangeset for help on using the changeset viewer.