sm.php
<?php
classe smtp
{
/* Variáveis Públicas */
var$smtp_port;
var $tempo_out;
var $host_name;
var $log_file;
var $relay_host;
var $depurar;
var $auth;
var $usuário;
var $passa;
/* Variáveis privadas */
var $meia;
/* Construtor */
função smtp($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
{
$this->debug = FALSE;
$this->smtp_port = $smtp_port;
$this->relay_host = $relay_host;
$this->time_out = 30; //é usado em fsockopen()
#
$this->auth = $auth;//auth
$este->usuário = $usuário;
$isto->passar = $passar;
#
$this->host_name = "localhost"; //é usado no comando HELO
$this->log_file = "";
$this->meia = FALSO;
}
/* Função principal */
função sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "")
{
$mail_from = $this->get_address($this->strip_comment($from));
$corpo = ereg_replace("(^|(rn))(\.)", " \1.\3 ", $corpo);
$header .= "Versão MIME:1.0rn";
if($mailtype=="HTML"){
$header .= "Tipo de conteúdo:texto/htmlrn";
}
$header .= "Para: ".$to."rn";
if ($cc!= "") {
$header .= "Cc: ".$cc."rn";
}
$header .= "De: $from<".$from.">;rn";
$header .= "Assunto: ".$assunto."rn";
$header .= $additional_headers;
$header .= "Data: ".date("r")."rn";
$header .= "X-Mailer:Por Redhat (PHP/".phpversion().")rn";
list($msec, $sec) = explode(" ", microtime());
$header .= "ID da mensagem: <".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)));
}
$enviado = VERDADEIRO;
foreach ($TO como $rcpt_to) {
$rcpt_to = $this->get_address($rcpt_to);
if (!$this->smtp_sockopen($rcpt_to)) {
$this->log_write("Erro: Não é possível enviar e-mail para ".$rcpt_to."n");
$enviado = FALSO;
continuar;
}
if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
$this->log_write("E-mail foi enviado para <".$rcpt_to.">;n");
} outro {
$this->log_write("Erro: Não é possível enviar e-mail para <".$rcpt_to.">;n");
$enviado = FALSO;
}
fclose($this->meia);
$this->log_write("Desconectado do host remoton");
}
retornar $enviado;
}
/* Funções Privadas */
function smtp_send($helo, $from, $to, $header, $body = "")
{
if (!$this->smtp_putcmd("HELO", $helo)) {
return $this->smtp_error("enviando comando HELO");
}
#auth
if($this->auth){
if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
return $this->smtp_error("enviando comando HELO");
}
if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
return $this->smtp_error("enviando comando HELO");
}
}
#
if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">;")) {
return $this->smtp_error("enviando comando MAIL FROM");
}
if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">;")) {
return $this->smtp_error("enviando comando RCPT TO");
}
if (!$this->smtp_putcmd("DADOS")) {
return $this->smtp_error("enviando comando DATA");
}
if (!$this->smtp_message($header, $body)) {
return $this->smtp_error("enviando mensagem");
}
if (!$this->smtp_eom()) {
return $this->smtp_error("enviando <CR>;<LF>;.<CR>;<LF>; [EOM]");
}
if (!$this->smtp_putcmd("QUIT")) {
return $this->smtp_error("enviando comando QUIT");
}
retornar VERDADEIRO;
}
função smtp_sockopen($endereço)
{
if ($this->relay_host == "") {
retornar $this->smtp_sockopen_mx($endereço);
} outro {
retornar $this->smtp_sockopen_relay();
}
}
função smtp_sockopen_relay()
{
$this->log_write("Tentando ".$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("Erro: Não é possível conectar ao host de retransmissão ".$this->relay_host."n");
$this->log_write("Erro: ".$errstr." (".$errno.)n");
retorne FALSO;
}
$this->log_write("Conectado ao host de retransmissão ".$this->relay_host."n");
retorne VERDADEIRO;
}
função smtp_sockopen_mx($endereço)
{
$domínio = ereg_replace(" ^.+@([^@]+)$ ", " \1 ", $endereço);
if ( !@getmxrr($domínio , $MXHOSTS)) {
$this->log_write("Erro: Não é possível resolver MX "".$domain.""n");
retorne FALSO;
}
foreach ($MXHOSTS como $host) {
$this->log_write("Tentando ".$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("Aviso: Não é possível conectar ao host mx ".$host."n");
$this->log_write("Erro: ".$errstr." (".$errno.)n");
continuar;
}
$this->log_write("Conectado ao host mx ".$host."n");
retorne VERDADEIRO;
}
$this->log_write("Erro: Não é possível conectar-se a nenhum host mx (".implode(", ", $MXHOSTS).")n");
retorne FALSO;
}
função smtp_message($cabeçalho, $corpo)
{
fputs($this->sock, $header."rn".$body);
$this->smtp_debug(">; ".str_replace("rn", "n".">; ", $header."n>; ".$body."n>; ") );
retorne VERDADEIRO;
}
função smtp_eom()
{
fputs($this->sock, "rn.rn");
$this->smtp_debug(". [EOM]n");
return $this->smtp_ok();
}
função smtp_ok()
{
$resposta = str_replace("rn", "", fgets($this->sock, 512));
$this->smtp_debug($response."n");
if (!ereg("^[23]", $resposta)) {
fputs($this->sock, "QUITrn");
fgets($this->meia, 512);
$this->log_write("Erro: Host remoto retornou "".$response.""n");
retorne FALSO;
}
retorne VERDADEIRO;
}
função smtp_putcmd($cmd, $arg = "")
{
if ($arg!= "") {
if($cmd=="") $cmd = $arg;
senão $cmd = $cmd." ".$arg;
}
fputs($this->sock, $cmd."rn");
$this->smtp_debug(">; ".$cmd."n");
return $this->smtp_ok();
}
função smtp_error($string)
{
$this->log_write("Erro: Ocorreu um erro enquanto ".$string.".n");
retorne FALSO;
}
função log_write($mensagem)
{
$this->smtp_debug($mensagem);
if ($this->log_file == "") {
retorne VERDADEIRO;
}
$ mensagem = data("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("Aviso: Não é possível abrir o arquivo de log "".$this->log_file.""n");
retorne FALSO;
}
rebanho($fp, LOCK_EX);
fputs($fp, $mensagem);
fclose($fp);
retorne VERDADEIRO;
}
função strip_comment($endereço)
{
$comentário = " \([^()]*\ )";
while (ereg($comentário, $endereço)) {
$endereço = ereg_replace($comentário, "", $endereço);
}
return $endereço;
}
função get_address($endereço)
{
$endereço = ereg_replace("([ trn])+", "", $endereço);
$endereço = ereg_replace("^.*<(.+)>;.*$", " \1 ", $endereço);
retornar $endereço;
}
função smtp_debug($mensagem)
{
if ($this->depurar) {
eco $ mensagem;
}
}
}
?>
mail.php
<?php
require("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 = "Assunto de teste";//邮件主题
$mailbody = "<h1>;Este é um e-mail de teste</h1>;";//邮件内容
$mailtype = "HTML";//邮件格式(HTML/TXT),TXT为文本邮件
#########################################
$smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);
$smtp->debug = TRUE;//是否显示发送的调试信息
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);