phpメールクラス、phpmail_PHPチュートリアル

WBOY
リリース: 2016-07-13 10:04:33
オリジナル
839 人が閲覧しました

phpメールクラス、phpメール

phpソケットを使用してメールを送信するクラスを作成します。phpプログラムを使用してメールを送信する場合は、シンプルで使いやすいです。

163 サーバーでは、RCPT コマンドで 163 メールボックスが存在するかどうかを確認することもできます。

さまざまな用途があります。

まだ考えてません。

記録して、困っている友達が参照できるようにします

クラスメール {

/**
*メールで送信できます
*/
public $host;
public $port;
public $user;
public $password;
public $mail_form;
public $rcpt;

public $body;

/**
*ヘッダーに添付されている情報
*/
public $to_name;
public $from_name;
public $subject;
public $html;

public $connection;

public $msg = array() ;


// 実行パラメータ初期化
public function __construct($conf, $rcpt, $header, $body, $html = true) {

try {

$this->host = $conf['host '];
$this->port = $conf['port'];
$this->user = $conf['user'];
$this->password = $conf['password'] ;

$this->rcpt = $rcpt;

$this->to_name = $header['to_name'];
$this->from_name = $header['from_name'];
$this- >subject = $header['subject'];
$this->html = $html;

$this->body =base64_encode($body);

} catch (Exception $e) {
投げる新しい例外($e->getMessage());            
}

}



public function connect() {
$this->connection = @fsockopen($this->host, '25', $errno, $errstr, 10);
if (! $this->connection) {
throw new Exception('connect failed!');
}
$greet = $this->callback_code();

}

パブリック関数 helo() {
if($ this->is_connect() &&
$this->send_data('HELO ' . $this->host) &&
$this->callback_code() == 250
{
) true を返す;
} else {
throw new Exception($this->get_callback_msg_lastest());

}
}

public function send_data($cmd) {
if (is_resource($this) ->接続)) {
return @fwrite( $this->connection, $cmd."rn", strlen($cmd) + 2);
}
}

public function auth(){
if ($this->is_connect() &&
$this ->send_data('AUTH LOGIN') && $this->callback_code() == 334 &&
            $this->send_data(base64_encode($this->user)) && $this->callback_code() == 334 &&
$this->send_data(base64_encode($this->password)) && $ this->callback_code() == 235 ) {
return true;
} else {
throw new Exception($this->get_callback_msg_lastest());            
}
}

public function Mail() {

if ($this->is_connect() &&
$this->send_data("MAIL FROM:<$this->user& gt;") &&
$this->callback_code() == 250
) {
return true;
} else {
throw new Exception($this->get_callback_msg_lastest());            
}
}

パブリック関数 is_connect() {
return is_resource($this->connection);
}

パブリック関数 callback_code() {
if ($this->is_connect()) {
$msg = fgets($this->connection);
if (!empty($msg)) {
$code = substr($msg, 0, strpos($msg, ' '));
} else {
戻る ' ';
}
$this->msg[] = $msg;
return $code;
}
}

public function get_callback_msg_lastest() {
return end($this->msg);
}

public function rcpt($rcpt) {
if ($this->is_connect() &&
$this->send_data("RCPT TO:") &&
$this->callback_code() = = 250
) {
return true;
} else {
throw new Exception($this->get_callback_msg_lastest());            
}
}

パブリック関数 data() {
if ($this->is_connect() &&
$this->send_data('DATA') &&
$this->call back_code() == 354) {
return true;
} else {
throw new Exception($this->get_callback_msg_lastest());
}
}


public function send_mail() {

試してみてください {

            $this->connect();
$this->helo();
$this->auth();
$this->Mail();

if (is_array($this) -> rcpt)) {
foreach ($this->rcpt as $rcpt) {
$this->rcpt($rcpt);
}

} else {
$this->rcpt($this-> rcpt);
}

$this->data();

$header = str_replace("rn" . '.', "rn" . '..', トリム(implode("rn", $this ->get_header())));
$body = str_replace("rn" . '.', "rn" . '..', $this->body);
$body = substr($body, 0, 1) == '.' ? 「。」 。 $body : $body;

$this->send_data($header);
$this->send_data('');
$this->send_data($body);            
$this->send_data('.');

if ($this->callback_code() != 250) {
throw new Exception('メール送信失敗!');                
}
return true;
} catch (Exception $e) {
throw new Exception($e->getMessage());            
}


}



//ただ能检测同じ邮件服务器上のメールアドレス
public function is_email_exist() {




}


パブリック関数 get_header() {

$header = array( );
$content_type = $this->html ? 'テキスト/html;' : 'テキスト/プレーン;' ;

$headers [] = '日付: ' 。 gmdate('D, j M Y H:i:s') 。 ' +0000';
$to_mail = is_array($this->rcpt) ? implode(',', $this->rcpt) : $this->rcpt;
$headers [] = 'To: "' . '=? utf8?B?' .base64_encode($this->to_name) .'" <' 。 $to_mail 。 '>';
$headers [] = 'From: "' . '=?utf8?B?' .base64_encode($this->from_name) .'" <' 。 $this->ユーザー 。 '>';
$headers [] = '件名: ' 。 '=?utf8?B?' 。 Base64_encode($this->subject) 。 '?=';
$headers [] = 'Content-Type:'.$content_type 。 ' 文字セット=utf8; format=flowed';
$headers [] = 'Content-Transfer-Encoding:base64';
$headers [] = 'Content-Disposition: inline';

return $headers;
}



}


/**
* 関数を使用してクラスをカプセル化する
*/
function send_mail($conf, $rcpt, $header, $body) {

$mail = new mail($conf, $rcpt, $header, $body);

if ($mail->send_mail()) {
echo 'メールを正常に送信しました!';
} else {
echo '失敗しました!';
}


}


$conf = array(
'host' => 'smtp.163.com',
'port' => '25',
'user' => 'z1298703836@163.com',
'パスワード' => 'zeiwei123',
);

$rcpt = array(
'z1298703836@sina.com',
'wei.zen@baisonmail.com '
);

$header = array(
'to_name' => 'willstang',
'from_name' => 'sinawill',
'subject' => 'tst of reo ',
);

$body = '

sfsfsd

';

$mail = 新規メール($conf, $rcpt, $header, $body);

$mail ->send_mail();


echo '
';
print_r($mail->msg);

電子メールの送信プロセスとその stmp プロトコルについてよく理解してください

送信内容は 2 つの部分に分かれており、1 つの部分はヘッダーにあり、もう 1 つの部分はメールの本文であるなど、送信の詳細もいくつかあります。

http://www.bkjia.com/PHPjc/965030.htmlwww.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/965030.html技術記事 phpメールクラス、phpメールはphpソケットを使用してメールを送信するクラスを作成します。phpプログラムを使用してメールを送信する場合、163サーバーではRCPTコマンドで確認できます。
関連ラベル:
php
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート