smtp.php
코드 복사 코드는 다음과 같습니다.
class smtp
{
/* 공개 변수 */
var $smtp_port;
var $time_out;
var $host_name;
var $log_file;
var $relay_host;
var $debug;
var $auth;
var $user;
var $pass;
/* 개인 변수 */
var $sock;
/* 생성자 */
함수 smtp($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
{
$this->debug = 거짓;
$this->smtp_port = $smtp_port;
$this->relay_host = $relay_host;
$this->time_out = 30; //fsockopen()에서 사용됨
$this->auth = $auth;//auth
$this->user = $user;
$this->pass = $pass;
$this->host_name = "localhost"; //HELO 명령에 사용됨
$this->log_file = "";
$this->sock = 거짓;
}
/* 주요 기능 */
기능 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";
if($mailtype=="HTML")
{
$header .= "Content-Type:text/htmlrn";
}
$header .= "받는 사람: ".$to."rn";
if ($cc != "")
{
$header .= "Cc: ".$cc."rn";
}
$header .= "보낸 사람: $from<".$from.">rn";
$header .= "제목: ".$subject."rn";
$header .= $additional_headers;
$header .= "날짜: ".date("r")."rn";
$header .= "X-Mailer:By Redhat(PHP/".phpversion().")rn";
list($msec, $sec) = explode(" ", microtime());
$header .= "메시지 ID: <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">rn";
$TO = explode(",", $this->strip_comment($to));
if ($cc != "")
{
$TO = array_merge($TO, explode(",", $this->strip_comment($cc)));
}
if ($bcc != "")
{
$TO = array_merge($TO, explode(",", $this->strip_comment($bcc)));
}
$sent = TRUE;
foreach ($TO as $rcpt_to)
{
$rcpt_to = $this->get_address($rcpt_to);
if (!$this->smtp_sockopen($rcpt_to))
{
$this->log_write("오류: ".$rcpt_to."n으로 이메일을 보낼 수 없습니다.") ;
$sent = FALSE;
계속하세요.
}
if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body))
{ $this->log_write( "이메일이 <".$rcpt_to.">n으로 전송되었습니다.");
}
else
{
$this->log_write("오류: <".$rcpt_to로 이메일을 보낼 수 없습니다.">n ");
$sent = FALSE;
}
fclose($this->sock);
$this->log_write("원격 호스트에서 연결이 끊어졌습니다.");
}
$sent를 반환;
}
/* 비공개 함수 */
함수 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("AUTH LOGIN", base64_en 코드($this-> user)))
{
return $this->smtp_error("HELO 명령 전송 중");
}
if (!$this->smtp_putcmd("", base64_encode($this->pass)))
{ this->smtp_error("HELO 명령을 보내는 중 ");
}
}
if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">"))
{
return $this->smtp_error("sending MAIL FROM 명령');
}
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("sending message");
}
if (!$this->smtp_eom())
{
return $this->smtp_error("sending
}
if (!$this->smtp_putcmd("QUIT"))
{
return $this->smtp_error("QUIT 명령 보내기");
}
TRUE를 반환합니다.
}
함수 smtp_sockopen($address)
{
if ($this->relay_host == "")
{ ;smtp_sockopen_mx($주소 );
}
else
{
return $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");
FALSE를 반환합니다.
}
$this->log_write("릴레이 호스트에 연결되었습니다.".$this->relay_host."n");
TRUE를 반환합니다.
}
함수 smtp_sockopen_mx($address)
{
$domain = ereg_replace("^. @([^@] )$", "1", $address);
if (!@getmxrr($domain, $MXHOSTS))
{
$this->log_write("오류: MX를 해결할 수 없습니다."".$domain.""n");
FALSE를 반환합니다.
}
foreach ($MXHOSTS as $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 호스트에 연결할 수 없습니다.".$ 호스트 ."N");
$this->log_write("오류: ".$errstr." (".$errno.")n");
계속하세요.
}
$this->log_write("mx 호스트에 연결됨".$host."n");
TRUE를 반환합니다.
}
$this->log_write("오류: 모든 mx 호스트에 연결할 수 없습니다(".implode(", ", $MXHOSTS).")n");
FALSE를 반환합니다.
}
function smtp_message($header, $body)
{
fputs($this->sock, $header."rn".$body);
$this->smtp_debug("> ".str_replace("rn", "n"."> ", $header."n> ".$body."n>"));
TRUE를 반환합니다.
}
함수 smtp_eom()
{
fputs($this->sock, "rn.rn");
$this->smtp_debug(". [EOM]n");
return $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, "QUITrn");
fgets($this->sock, 512);
$this->log_write("오류: 원격 호스트가 반환됨"".$response.""n");
FALSE를 반환합니다.
}
TRUE를 반환합니다.
}
함수 smtp_putcmd($cmd, $arg = "")
{
if ($arg != "")
{
if($cmd=="")
{
$cmd = $arg;
}
else
{
$cmd = $cmd." ".$arg;
}
}
fputs($this->sock, $cmd."rn");
$this->smtp_debug("> ".$cmd."n");
return $this->smtp_ok();
}
함수 smtp_error($string)
{
$this->log_write("오류: 오류가 발생하는 동안".$string.".n");
FALSE를 반환합니다.
}
함수 log_write($message)
{
$this->smtp_debug($message);
if ($this->log_file == "")
{
TRUE를 반환합니다.
}
$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");
반환 FALSE;;
}
flock($fp, LOCK_EX);
fputs($fp, $message);
fclose($fp);
TRUE를 반환합니다.
}
function strip_comment($address)
{
$comment = "([^()]*)";
while (ereg($comment, $address))
{
$address = ereg_replace($comment, "", $address);
}
$address를 반환합니다.
}
function get_address($address)
{
$address = ereg_replace("([ trn]) ", "", $address);
$address = ereg_replace("^.*<(. )>.*$", "1", $address);
$address를 반환합니다.
}
함수 smtp_debug($message)
{
if ($this->debug)
{
echo $message;
}
}
}
?>
复主代码 代码아래:
/*
테스트 프로그램입니다!!!
*/
require("smtp.php")
#### ################################
$smtpserver = "smtp.163.com "; //SMTP 서버
$smtpserverport = 25;//SMTP 서버 포트
$smtpusermail = "reterry123@163.com";//SMTP 서버 사용자 이메일
$smtpemailto = "dxytools@gmail .com" ;//보내는 사람
$smtpuser = "reterry123";//SMTP 서버의 사용자 계정
$smtppass = "014040001";//SMTP 서버의 사용자 비밀번호
$mailsubject = " Chinese" ;//이메일 제목
$mailbody = "