ホームページ > バックエンド開発 > PHPチュートリアル > smtpメール送信例_PHPチュートリアル

smtpメール送信例_PHPチュートリアル

WBOY
リリース: 2016-07-21 16:01:14
オリジナル
1043 人が閲覧しました

test_smtp.php

require("smtp.php");

$smtp=new smtp_class;

$smtp->host_name="mail.xiaocui.com";
$smtp->localhost ="localhost";
$from="webmaster@xiaocui.com";
$to="root@xiaocui.com";
if($smtp->SendMessage(
$from,
array(
$to
) ),
array(
"From: $from",
"To: $to",
"件名: Manuel Lemos の SMTP クラスのテスト"
),
"Hello $to,nn SMTP クラスは正常に動作しています。nnBye.n"))
echo "$to OK.n にメッセージを送信しました";
else
echo "$to.n にメッセージを送信できませんでしたエラー: ".$smtp->error ."n"
?>

smtp.php


class smtp_class
{
var $host_name="";
var $host_port=25;
var $localhost="";
var $ timeout=0;
var $error="";
var $debug=1;
var $esmtp=1;
var $esmtp_host="";
var $esmtp_extensions=array();
var $maximum_piped_recipients=100;

/* プライベート変数 - アクセスしないでください */

var $state="Disconnected";
var $connection=0;
var $pending_recipients=0;

/* プライベート メソッド - 呼び出さないでください */

Function OutputDebug($message)
{
echo $message,"
n";
}

Function GetLine()
{
for($line="";;)
{
if(feof($ this->connection))
{
$this->error="ソケットからの読み取り中にストリームの最後に到達しました";
return(0);
}
if(($data=fgets($this-> ;connection,100))==false)
{
$this->error="ソケットから行を読み取ることができませんでした";
return(0);
}
$line.=$data;
$ length=strlen($line);
if($length>=2
&& substr($line,$length-2,2)=="rn")
{
$line=substr($line,0,$ length-2);
if($this->debug)
$this->OutputDebug("< $line");
return($line);
}
}
}

Function PutLine($line)
{
if($this->debug)
$this->OutputDebug("> $ line");
if(!fputs($this->connection,"$linern"))
{
$this->error="ソケットに行を書き込むことができませんでした";
return(0) ;
}
return(1);
}

関数 PutData($data)
{
if(strlen($data))
{
if($this->debug)
$this->OutputDebug( "> $data");
if(!fputs($this->connection,$data))
{
$this->error="ソケットにデータを書き込むことができませんでした";
return( 0);
}
}
return(1);
}

Function VerifyResultLines($code,$responses="")
{
if(GetType($responses)!="array")
$responses=array ();
Unset($match_code);

while(($line=$this->GetLine($this->connection)))
{
if(IsSet($match_code))
{
if( strcmp(strtok($line," -"),$match_code))
{
$this->error=$line;
return(0);
}
}
else
{
$match_code=strtok($ line," -");
if(GetType($code)=="array")
{
for($codes=0;$codes if($codes>=count($code))
{
$this->error=$line;
return(0);
}
}
else
{
if(strcmp($match_code,$code))
{
$this->error=$line;
return(0);
}
}
}
$responses[]=strtok(" ");
if(!strcmp($match_code,strtok($line," ")))
return(1);
}
return(-1);
}

Function FlushRecipients()
{
if( $this->pending_sender)
{
if($this->VerifyResultLines("250")<=0)
return(0);
$this->pending_sender=0;
}
for(; $this->pending_recipients;$this->pending_recipients--)
{
if($this->VerifyResultLines(array("250","251"))<=0)
return(0);
}
return(1);
}

/* パブリック メソッド */

Function Connect()
{
$this->error=$error="";
$this->esmtp_host="" ;
$this->esmtp_extensions=array();
if(!($this->connection=($this->timeout ? fsockopen($this->host_name,$this->host_port,& $errno,&$error,$this->timeout) : fsockopen($this->host_name,$this->host_port))))
{
switch($error)
{
case -3:
$this->error="-3 ソケットを作成できませんでした";
return(0);
case -4:
$this->error="-4 ホスト名 "".$host_name の DNS ルックアップ。 " 失敗しました";
return(0);
case -5:
$this->error="-5 接続が拒否されたかタイムアウトしました";
return(0);
case -6:
$this-> error="-6 fdopen() 呼び出しに失敗しました";
return(0);
case -7:
$this->error="-7 setvbuf() 呼び出しに失敗しました";
return(0);
デフォルト:
$this->error=$error." ホスト "".$this->host_name.""";
return(0);
}
}
else
{
if(! strcmp($localhost=$this->localhost,"")
&& !strcmp($localhost=getenv("SERVER_NAME"),"")
&& !strcmp($localhost=getenv("HOST"),"" ))
$localhost="localhost";
$success=0;
if($this->VerifyResultLines("220")>0)
{
if($this->esmtp)
{
$ returns=array();
if($this->PutLine("EHLO $localhost")
&& $this->VerifyResultLines("250",&$responses)>0)
{
$this-> ;esmtp_host=strtok($responses[0]," ");
for($response=1;$response {
$extension=strtoupper(strtok($responses[$response ]," "));
$this->esmtp_extensions[$extension]=strtok("");
}
$success=1;
}
}
if(!$success
&& $this-> PutLine("HELO $localhost")
&& $this->VerifyResultLines("250")>0)
$success=1;
}
if($success)
{
$this->state="接続されました";
return(1);
}
else
{
fclose($this->connection);
$this->connection=0;
$this->state="切断されました";
return(0);
}
}
}

関数 MailFrom($sender)
{
if(strcmp($this->state,"Connected"))
{
$this->error="接続が初期状態ではありません";
return(0 );
}
$this->error="";
if(!$this->PutLine("MAIL FROM: <".$sender.">"))
return(0);
if(!IsSet($this->esmtp_extensions["PIPELINING"])
&& $this->VerifyResultLines("250")<=0)
return(0);
$this->state=" SenderSet";
if(IsSet($this->esmtp_extensions["PIPELINING"])))
$this->pending_sender=1;
$this->pending_recipients=0;
return(1);
}

関数 SetRecipient($recipient)
{
switch($this->state)
{
case "SenderSet":
case "RecipientSet":
break;
default:
$this->error="接続は次のとおりです受信者設定状態ではありません";
return(0);
}
$this->error="";
if(!$this->PutLine("RCPT TO:<".$recipient." >"))
return(0);
if(IsSet($this->esmtp_extensions["PIPELINING"]))
{
$this->pending_recipients++;
if($this->pending_recipients>= $this->maximum_piped_recipients)
{
if(!$this->FlushRecipients())
return(0);
}
}
else
{
if($this->VerifyResultLines(array) (「250 ","251"))<=0)
return(0);
}
$this->state="RecipientSet";
return(1);
}

Function StartData()
{
if (strcmp($this->state,"RecipientSet"))
{
$this->error="接続はデータ送信開始状態ではありません";
return(0);
}
$this-> ;error="";
if(!$this->PutLine("DATA"))
return(0);
if($this->pending_recipients)
{
if(!$this->FlushRecipients ())
return(0);
}
if($this->VerifyResultLines("354")<=0)
return(0);
$this->state="SendingData";
return (1);
}

関数 PrepareData($data,&$output)
{
$length=strlen(&$data);
for($output="",$position=0;$position {
$next_position=$length;
for($current=$position;$current {
switch($data[$current])
{
case "n":
$next_position=$current+1;
break 2;
case "r":
$next_position=$current+1;
if($data[$next_position]=="n")
$next_position++;
break 2;
}
}
if($data[$position]==".")
$output.=".";
$output.=substr(&$data,$position,$current-$position)." rn";
$position=$next_position;
}
}

関数 SendData($data)
{
if(strcmp($this->state,"SendingData"))
{
$this->error ="接続はデータ送信状態ではありません";
return(0);
}
$this->error="";
return($this->PutData(&$data));
}

関数 EndSendingData()
{
if(strcmp($this->state,"SendingData"))
{
$this->error="接続はデータ送信状態ではありません";
return(0 );
}
$this->error="";
if(!$this->PutLine("rn.")
|| $this->VerifyResultLines("250")<=0)
return(0);
$this->state="接続済み";
return(1);
}

Function ResetConnection()
{
switch($this->state)
{
case "接続済み":
return(1);
case "SendingData":
$this->error="データ送信中に接続をリセットできません";
return(0);
case "切断されました":
$this-> ;error="接続が確立される前にリセットできません";
return(0);
}
$this->error="";
if(!$this->PutLine("RSET")
|| $this->VerifyResultLines("250")<=0)
return(0);
$this->state="接続済み";
return(1);
}

関数切断($ quit=1)
{
if(!strcmp($this->state,"切断"))
{
$this->error="以前に SMTP 接続が確立されていませんでした";
return(0) ;
}
$this->error="";
if(!strcmp($this->state,"接続済み")
&& $quit
&& (!$this->PutLine("QUIT")
|| $this->VerifyResultLines("221")<=0))
return(0);
fclose($this->connection);
$this->connection=0;
$this-> state="切断";
return(1);
}

Function SendMessage($sender,$recipients,$headers,$body)
{
if(($success=$this->Connect()))
{
if(($success=$this->MailFrom($sender)))
{
for($recipient=0;$recipient {
if(!( $success=$this->SetRecipient($recipients[$recipient])))
break;
}
if($success
&& ($success=$this->StartData()))
{
for( $header_data="",$header=0;$header $header_data.=$headers[$header]."rn";
if(($success=$this-> ;SendData($header_data."rn")))
{
$this->PrepareData($body,&$body_data);
$success=$this->SendData($body_data);
}
if( $success)
$success=$this->EndSendingData();
}
}
$disconnect_success=$this->Disconnect($success);
if($success)
$success=$disconnect_success;
}
return($success);
}

};

?>


www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/316851.html技術記事 test_smtp.php ? require(smtp.php); $smtp=新しいsmtp_class; $smtp-host_name=mail.xiaocui.com; $smtp-localhost=ローカルホスト; $from=webmaster@xiaocui.com; $to=root@xiaocui.com; if($smtp-Sen...
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート