Changeset 17055


Ignore:
Timestamp:
2008/02/15 13:06:27 (16 years ago)
Author:
satou
Message:

必須メールヘッダの追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/SC_SendMail.php

    r16669 r17055  
    204204        $arrHeader['From'] = $this->from; 
    205205        $arrHeader['Return-Path'] = $this->return_path; 
    206  
    207206        if($this->reply_to != "") { 
    208207            $arrHeader['Reply-To'] = $this->reply_to; 
    209208        } 
    210  
    211209        if($this->cc != "") { 
    212210            $arrHeader['Cc'] = $this->cc; 
    213211        } 
    214  
    215212        if($this->bcc != "") { 
    216213            $arrHeader['Bcc'] = $this->bcc; 
    217214        } 
     215        $arrHeader['Date'] = date("D, j M Y H:i:s O"); 
    218216        return $arrHeader; 
    219217    } 
Note: See TracChangeset for help on using the changeset viewer.