sm.php
<?php
classe smtp
{
/* Variables publiques */
var $smtp_port;
var $time_out;
var $nom_hôte;
var $fichier_log ;
var $relay_host;
var $débogage ;
var $auth;
var $utilisateur;
var $passe;
/* Variables privées */
var $chaussette;
/* Entrepreneur */
fonction smtp($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
{
$this->debug = FAUX ;
$this->smtp_port = $smtp_port;
$this->relay_host = $relay_host;
$this->time_out = 30 ; //est utilisé dans fsockopen()
#
$this->auth = $auth;//auth
$this->user = $user;
$this->pass = $pass;
#
$this->host_name = "localhost"; //est utilisé dans la commande HELO
$this->log_file = "";
$this->chaussette = FAUX;
}
/* Fonction principale */
fonction 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 .= "Version MIME : 1.0rn" ;
si($mailtype=="HTML"){
$header .= "Content-Type:text/htmlrn";
}
$header .= "À : ".$à."rn";
si ($cc != "") {
$header .= "Cc: ".$cc."rn";
}
$header .= "De : $from<".$from.">;rn";
$header .= "Sujet : ".$subject."rn";
$header .= $additional_headers;
$header .= "Date : ".date("r")."rn";
$header .= "X-Mailer : par Redhat (PHP/".phpversion().")rn";
list($msec, $sec) = éclater(" ", microtime());
$header .= "ID du message : <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">;rn";
$TO = exploser(",", $this->strip_comment($to));
si ($cc != "") {
$TO = array_merge($TO, éclater(",", $this->strip_comment($cc)));
}
si ($bcc != "") {
$TO = array_merge($TO, éclater(",", $this->strip_comment($bcc)));
}
$envoyé = VRAI ;
foreach ($TO comme $rcpt_to) {
$rcpt_to = $this->get_address($rcpt_to);
si (!$this->smtp_sockopen($rcpt_to)) {
$this->log_write("Erreur : Impossible d'envoyer un e-mail à ".$rcpt_to."n");
$envoyé = FAUX ;
continuer;
}
if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
$this->log_write("L'e-mail a été envoyé à <".$rcpt_to.">;n");
} autre {
$this->log_write("Erreur : Impossible d'envoyer un e-mail à <".$rcpt_to.">;n");
$envoyé = FAUX ;
}
fclose($this->chaussette);
$this->log_write("Déconnecté de l'hôte distantn");
}
retourner $ envoyé ;
}
/* Fonctions privées */
function smtp_send($helo, $from, $to, $header, $body = "")
{
if (!$this->smtp_putcmd("HELO", $helo)) {
return $this->smtp_error("envoi de la commande HELO");
}
#auth
si($this->auth){
if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
return $this->smtp_error("envoi de la commande HELO");
}
if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
return $this->smtp_error("envoi de la commande HELO");
}
}
#
if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">;")) {
return $this->smtp_error("envoi de la commande MAIL FROM");
}
if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">;")) {
return $this->smtp_error("envoi de la commande RCPT TO");
}
if ($this->smtp_putcmd("DONNÉES")) {
return $this->smtp_error("envoi de la commande DATA");
}
if ($this->smtp_message($header, $body)) {
return $this->smtp_error("envoi du message");
}
if ($this->smtp_eom()) {
return $this->smtp_error("envoi <CR>;<LF>;.<CR>;<LF>; [EOM]");
}
if ($this->smtp_putcmd("QUIT")) {
return $this->smtp_error("envoi de la commande QUIT");
}
renvoie VRAI ;
}
fonction smtp_sockopen($adresse)
{
if ($this->relay_host == "") {
return $this->smtp_sockopen_mx($adresse);
} autre {
return $this->smtp_sockopen_relay();
}
}
fonction smtp_sockopen_relay()
{
$this->log_write("Essayer de ".$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("Erreur : Impossible de se connecter à l'hôte relais ".$this->relay_host."n");
$this->log_write("Erreur : ".$errstr." ("".$errno.")n");
retourner FAUX ;
}
$this->log_write("Connecté à l'hôte relais ".$this->relay_host."n");
retourner VRAI ;
}
fonction smtp_sockopen_mx($adresse)
{
$domain = ereg_replace(" ^.+@([^@]+)$ ", " \1 ", $address);
if ( !@getmxrr($domain , $MXHOSTS)) {
$this->log_write("Erreur : Impossible de résoudre MX "".$domain.""n");
retourner FAUX ;
}
foreach ($MXHOSTS en tant que $host) {
$this->log_write("Essayer de ".$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("Attention : Impossible de se connecter à l'hôte mx ".$host."n");
$this->log_write("Erreur : ".$errstr." ("".$errno.")n");
continuer;
}
$this->log_write("Connecté à l'hôte mx ".$host."n");
retourner VRAI ;
}
$this->log_write("Erreur : impossible de se connecter à des hôtes mx ("".implode(", ", $MXHOSTS).")n");
retourner FAUX ;
}
fonction smtp_message($header, $body)
{
fputs($this->sock, $header."rn".$body);
$this->smtp_debug(">; ".str_replace("rn", "n".">; ", $header."n>; ".$body."n>; ") );
retourner VRAI ;
}
fonction smtp_eom()
{
fputs($this->sock, "rn.rn");
$this->smtp_debug(". [EOM]n");
return $this->smtp_ok();
}
fonction 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->chaussette, 512);
$this->log_write("Erreur : l'hôte distant a renvoyé "".$response.""n");
retourner FAUX ;
}
retourner VRAI ;
}
fonction smtp_putcmd($cmd, $arg = "")
{
si ($arg != "") {
si($cmd=="") $cmd = $arg;
sinon $cmd = $cmd." ".$arg;
}
fputs($this->sock, $cmd."rn");
$this->smtp_debug(">; ".$cmd."n");
return $this->smtp_ok();
}
fonction smtp_error ($ chaîne)
{
$this->log_write("Erreur : une erreur s'est produite pendant ".$string.".n");
retourner FAUX ;
}
fonction log_write($message)
{
$this->smtp_debug($message);
if ($this->log_file == "") {
retourner VRAI ;
}
$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("Attention : Impossible d'ouvrir le fichier journal "".$this->log_file.""n");
retourner FAUX ;
}
troupeau ($fp, LOCK_EX);
fputs($fp, $message);
fclose($fp);
retourner VRAI ;
}
fonction strip_comment($adresse)
{
$comment = " \([^()]*\ )";
while (ereg($commentaire, $adresse)) {
$adresse = ereg_replace($commentaire, "", $adresse);
}
return $adresse ;
}
fonction get_address($adresse)
{
$adresse = ereg_replace("([ trn])+", "", $adresse);
$adresse = ereg_replace("^.*<(.+)>;.*$", " \1 ", $adresse);
retourner $adresse ;
}
fonction smtp_debug ($ message)
{
si ($this->debug) {
echo $message;
}
}
}
?>
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 = "Sujet du test";//邮件主题
$mailbody = "<h1>;Ceci est un courrier test</h1>;";//邮件内容
$mailtype = "HTML";//lien vers HTML/TXT),TXT vers un message
##########################################
$ smtp = new smtp ($ smtpServer, $ smtpServerport, true, $ smtpuser, $ smtppass); // 这里面的一个 true 是表示使用身份验证, 否则不使用身份验证.
$smtp->debug = TRUE;//
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype) ;