ホームページ >バックエンド開発 >PHPチュートリアル >PHP のクラス: 一括メール_PHP チュートリアル

PHP のクラス: 一括メール_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-20 11:04:08917ブラウズ

このクラスは大量のメールに使用できます。テスト環境は Linux です。これを使用するには、sendmail をインストールする必要があります。クラスメール {
関数メール ( $subject, $message, $senderName, $senderEmail, $toList, $ccList=0, $bccList=0, $replyTo=0) { $this->sender = $senderName . <$ senderEmail>";
$this->replyTo = $replyTo;
$this->subject = $subject;
$this->message = $message;
// 受信者を定義します
if ( is_array ($ toList) ) {
$this->to = join( $toList, "," );
} else {
$this->to = $toList;
}
// CC リストを定義します
if ( is_array ($ccList) && sizeof($ccList) ) {
$this->cc = join( $ccList, "," );
} elseif ( $ccList ) {
$this->cc = $ccList;
}
// パスワード カーボン コピー リストを定義します
if ( is_array($bccList) && sizeof($bccList) ) {
$this->bcc = join( $bccList, "," ) elseif ( $bccList ); ) {
$this->bcc = $bccList;
}
}
// Send 関数
// php の mail() 関数を使用してメールを送信します
function send () {
//Sender
$this- >headers = "From: " . $this->sender . " ";
// 返信アドレス
if ( $this->replyTo ) {
$this->headers .= "Reply-To: " . $this->replyTo . " ";
// CC
if ( $this->cc ) {
$this->headers .= "Cc: " . ";
}
// シークレット CC
if ( $this->bcc ) {
$this->headers .= "Bcc: " . $this->bcc . " ";
}
メールを返す ( $this->to, $this->subject, $this->message, $this->headers ); // 結果を返す
}
}
?>Description:
パラメータ 説明
----------
- 次のパラメータは必須です: subject、message、senderName、senderEmail、および toList
- これらのパラメータはオプションです: ccList、bccList、replyTo
- toList、ccList、および bccList は有効な電子メールである必要がありますアドレス





http://www.bkjia.com/PHPjc/445243.html

www.bkjia.com

tru​​e

http://www.bkjia.com/PHPjc/445243.html

技術記事このクラスは大量の電子メールに使用できます。システムは if ( ! 定義( 'MAIL_CLASS_DEFINED' ) ) { クラス... を使用するために sendmail をインストールする必要があります。
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。