//////////////////////////////////////// ///////////////////
// EmailClass 0.5
// 寄送郵件的類別 // // php@paulschreiber.com
// http://paulschreiber.com/
//
// / - subject、message、senderName、senderEmail 和toList 是必需的
// - ccList、bccList 和replyTo 是可選的
///List List-bList群組
//(這些字串應該是有效的電子郵件地址
//
// 範例
// 郵件(“你好”, // 主題
// "你好嗎?", //郵件正文
// "paul", //發件人姓名
// "foo@foobar .com", //寄件者電子郵件
/ / " paul@whereever.com" ///複製:收件人
// 發送,結果為」。$m->send();
//
//
//
if ( ! Defined( 'MAIL_CLASS_DEFINED ' 🎜>
class email {
// 建構子!
函式電子郵件( $subject, $message, $senderName, $senderEmail, $toList, $ccList=0, $bccList=0, $reply Name . 「」;
$this->replyTo = $replyTo; $this->中 = $message;
/ 設定收件者:收件人
if (is_array($toList) ) { >to = join( $toList, ", 」);
} else this->to = $toList;
}
//已設定副本:收件人
🎜> $this-> cc = 加入( $ccList, " ,” );
} elseif ( $ccList ) {
List;
}
if ( is_array( $bccList) && sizeof($bccList) ) {
} elseif ( $bccList ) {
bccList;
}
// PHP 的mail() 函數的包裝;哎呀,這是PHP 的郵件函數,正確完成了:-)
// 您可以重寫此方法:
// (a 🎜> 功能send ( ) {
// 創建PHP 的mail() 函數所需的標頭
🎜> $this->headers = "From: " . $this->寄件人。 「n」;
// 回覆位址
$this->headers .= "Reply-To: 」。 $this->replyTo 。 「n」;
}
if ( $this->cc ) {
$this->cc 。 「n」;
}
if ( $this->bcc ) {
. $this->密件抄送。 「n」;
}
與中郵件( $this->to, $this->subject, $this->mes 🎜>
}
? >