//////////////////////////////////////////// / ////////////////
// EmailClass 0.5
// 寄送郵件的類別 // http://paulschreiber.com/
//
// 參數 🎜>//-- subject、message、senderName、senderEmail 和toList 是必需的
// - ccList、bccList 和replyTo 是可選的
// - toList、ccList 和bccList 可以是字串或數字
// (這些字串應該是有效的電子郵件地址
//
// 範例
// ------- 範例
// ------- 範例
// ------- 例如 // "你好嗎?", //消息正文
// "paul", //發件人姓名
// "foo@foobar.com ", //寄件者的電子郵件
// "paul@whereever.com " // 副本:收件人
// ); // ); /// send();
//
//
//
if ( ! Defined( 'MAIL_CLASS_DEFINED' ) ) {
> // 建構函數!
函式電子郵件( $subject, $message, $senderName, $senderEmail, $toList, $ccList=0, $bccList=0, $reply Name . 「」;
$this->replyTo = $replyTo; $this->中 = $message;
10m
if (is_array($toList) ) { to = join( $toList, "," );
} else > to = $toList;
}
//已在設定的副本:收件人
$this->cc = join( $cc列表,「,」) ;
) elseif ( $ccList ) {
🎜> }
if ( is_array($bccList) && sizeof ($bccList) ) {
, } elseif ( $bccList ) {
}
}
// 傳送訊息;這其實只是
// 傳送訊息;這其實只是
/ / 您可以重寫這個方法:
// (a) 直接使用sendmail
/ 🎜> // 以PHP 所建立的mail () 函數所需的標頭
// 發件者
「n」;
// 回覆位址
$this->headers .= "Reply-To: " . $this->replyTo 。 「n」;
}
if ( $this->cc ) {
>cc 。 「n」;
}
if ( $this-> bcc ) {
->密件副本。 「n」;
}
return mail ( $this->to, $this->subject, $this->message, $this->headers }
?>
以上就介紹了telnet 發郵件 給多個地址發郵件的類,包括了telnet 發郵件方面的內容,希望對PHP教程有興趣的朋友有所幫助。