sm.php
<?php
類別 smtp
{
/* 公共變數 */
var $smtp_port;
var $time_out;
var $主機名稱;
var $log_file;
var $relay_host;
var $debug;
var $auth;
var $用戶;
var $pass;
/* 私有變數 */
var $sock;
/* 建構子 */
函數 smtp($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
{
$this->調試=FALSE;
$this->smtp_port = $smtp_port;
$this->relay_host = $relay_host;
$this->time_out = 30; //用於fsockopen()
#
$this->auth = $auth;//auth
$這個->用戶= $用戶;
$this->pass = $pass;
#
$this->host_name = "localhost"; //用於HELO指令
$this->log_file = "";
$this->sock = FALSE;
}
/* 主要函數 */
函數sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "")
{
$mail_from = $this->get_address($this->strip_comment($from));
$body = ereg_replace("(^|(rn))(\.)", " \1.\3 ", $body);
$header .= "MIME 版本:1.0rn";
如果($mailtype==“HTML”){
$header .= "內容類型:text/htmlrn";
}
$header .= "收件者: ".$to."rn";
如果($cc!=“”){
$header .= "抄送: ".$副本。
}
$header .= "來自: $from<".$from.">;rn";
$header .= "主題: ".$subject."rn";
$header .= $additional_headers;
$header .= "日期: ".date("r")."rn";
$header .= "X-Mailer:By Redhat (PHP/".phpversion().")rn";
列表($毫秒,$秒)=爆炸(“”,microtime());
$header .= "訊息 ID: <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">;rn";
$TO = 爆炸(",", $this->strip_comment($to));
如果($cc!=“”){
$TO = array_merge($TO, 爆炸(",", $this->strip_comment($cc)));
}
if ($bcc != "") {
$TO = array_merge($TO, 爆炸(",", $this->strip_comment($bcc)));
$
已發送= TRUE;
foreach ($TO 作為 $rcpt_to) {
$rcpt_to = $this->get_address($rcpt_to);
if (!$this->smtp_sockopen($rcpt_to)) {
$this->log_write("錯誤: 無法傳送電子郵件至 ".$rcpt_to."n");
$已發送=假;
繼續;
}
if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
$this->log_write("電子郵件已傳送至<".$rcpt_to.">;n");
} 別的 {
$this->log_write("錯誤:無法傳送電子郵件至 <".$rcpt_to.">;n");
$已發送=假;
}
fclose($this->sock);
$this->log_write("與遠端主機斷開連線n");
}
回傳已發送的$;
}
/* 私有函式 */
function smtp_send($helo, $from, $to, $header, $body = "")
{
if (!$this->smtp_putcmd("HELO", $helo)) {
return $this->smtp_error("發送 HELO 指令");
}
#auth
if($this->auth){
if (!$this->smtp_putcmd("驗證登入", base64_encode($this->user))) {
return $this->smtp_error("發送 HELO 指令");
}
if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
return $this->smtp_error("發送 HELO 指令");
}
}
#
if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">;")) {
return $this->smtp_error("從指令發送郵件");
}
if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">;")) {
return $this->smtp_error("發送 RCPT TO 指令");
}
if (!$this->smtp_putcmd("DATA")) {
return $this->smtp_error("發送 DATA 指令");
}
if (!$this->smtp_message($header, $body)) {
return $this->smtp_error("發送訊息");
}
if (!$this->smtp_eom()) {
return $this->smtp_error("正在發送 <CR>;<LF>;.<CR>;<LF>; [EOM]");
}
if (!$this->smtp_putcmd("QUIT")) {
return $this->smtp_error("發送退出指令");
返回真
;
}
函數 smtp_sockopen($位址)
{
if ($this->relay_host == "") {
返回 $this->smtp_sockopen_mx($address);
} 別的 {
返回 $this->smtp_sockopen_relay();
}
函數 smtp_sockopen_relay(
)
{
$this->log_write("正在嘗試 ".$this->relay_host.":".$this->smtp_port."n");
$this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);
if (!($this->sock && $this->smtp_ok())) {
$this->log_write("錯誤: 無法連線到中繼主機 ".$this->relay_host."n");
$this->log_write("錯誤:".$errstr." (".$errno.")n");
返回假;
}
$this->log_write("已連線至中繼主機 ".$this->relay_host."n");
返回真;
}
函數 smtp_sockopen_mx($位址)
{
$domain = ereg_replace(" ^.+@([^@]+)$ ", " \1 ", $address);
if ( !@getmxrr($domain , $MXHOSTS)) {
$this->log_write("錯誤:無法解析 MX "".$domain.""n");
返回假;
}
foreach ($MXHOSTS 作為 $host) {
$this->log_write("正在嘗試 ".$host.":".$this->smtp_port."n");
$this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
if (!($this->sock && $this->smtp_ok())) {
$this->log_write("警告:無法連線到 mx 主機 ".$host。"n");
$this->log_write("錯誤:".$errstr." (".$errno.")n");
繼續;
}
$this->log_write("已連線至 mx 主機 ".$host."n");
返回真;
}
$this->log_write("錯誤:無法連線到任何 mx 主機 (".implode(", ", $MXHOSTS).")n");
返回假;
函數
smtp_message($header, $body)
{
fputs($this->sock, $header."rn".$body);
$this->smtp_debug(">; ".str_replace("rn", "n".">; ", $header."n>; ".$body."n>; ") );
返回真;
函數 smtp_eom(
)
{
fputs($this->sock, "rn.rn");
$this->smtp_debug(".[EOM]n");
返回 $this->smtp_ok();
}
函數 smtp_ok()
{
$response = str_replace("rn", "", fgets($this->sock, 512));
$this->smtp_debug($response."n");
if (!ereg("^[23]", $response)) {
fputs($this->sock, "退出rn");
fgets($this->sock, 512);
$this->log_write("錯誤:遠端主機回傳""。$response。""n");
返回假;
}
返回真;
}
函數 smtp_putcmd($cmd, $arg = "")
{
如果($arg!=“”){
if($cmd=="") $cmd = $arg;
否則 $cmd = $cmd。
}
fputs($this->sock, $cmd."rn");
$this->smtp_debug(">; ".$cmd."n");
返回 $this->smtp_ok();
函數
smtp_error($string)
{
$this->log_write("錯誤:".$string." 時發生錯誤。n");
返回假;
函數 log_write($message
)
{
$this->smtp_debug($message);
if ($this->log_file == "") {
返回真;
$
message = date("M d H:i:s ").get_current_user()."[".getmypid()."]: ".$message;
if ( !@file_exists($this->log_file ) || !($fp = @fopen($this->log_file, "a"))) {
$this->smtp_debug("警告:無法開啟日誌檔案"".$this->log_file.""n");
返回假;
}
羊群($fp,LOCK_EX);
fputs($fp, $message);
fclose($fp);
返回真;
}
函數 strip_comment($位址)
{
$comment = " \([^()]*\ )";
while (ereg($comment, $address)) {
$地址 = ereg_replace($comment, "", $地址);
回
$地址;
}
函數 get_address($address)
{
$address = ereg_replace("([ trn])+", "", $address);
$address = ereg_replace("^.*<(.+)>;.*$", " \1 ", $address);
回$地址;
函數
smtp_debug($message)
{
如果($this->調試){
回顯$訊息;
}
}
}
?>
mail.php
<?php
需要(“sm.php”);
############################################
$smtpserver = "mail.asdf.com";//SMTP伺服器
$smtpserverport =25;//SMTP伺服器連接埠
$smtpusermail = " [email protected]";//SMTP伺服器的使用者信箱
$smtpemailto = " [email protected]";//寄給誰
$smtpuser = " [email protected]";//SMTP伺服器的使用者帳號
$smtppass = "asdf";//SMTP伺服器的使用者密碼
$mailsubject = "測試主題";//郵件主旨
$mailbody = "<h1>;這是一封測試郵件</h1>;";//郵件內容
$mailtype = "HTML";//郵件格式(HTML/TXT),TXT為文字郵件
############################################
$smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);//這裡面的一個true表示使用身份驗證,否則不使用身份驗證。
$smtp->debug = TRUE;//是否顯示傳送的偵錯訊息
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);