demo.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"> <title>PHP利用smtp类发送邮件范例</title> </head> <body> <form action="sendmail.php" method="post"> <p>收件人:<input type="text" name="toemail" /></p> <p>标 题:<input type="text" name="title" /></p> <p>内 容:<textarea name="content" cols="50" rows="5"></textarea></p> <p><input type="submit" value="发送" /></p> </form> </body> </html>
sendmail.php
<meta charset="utf-8"> <?php /** * 注:本邮件类都是经过我测试成功了的,如果大家发送邮件的时候遇到了失败的问题,请从以下几点排查: * 1. 用户名和密码是否正确; * 2. 检查邮箱设置是否启用了smtp服务; * 3. 是否是php环境的问题导致; * 4. 将26行的$smtp->debug = false改为true,可以显示错误信息,然后可以复制报错信息到网上搜一下错误的原因 */ require_once "email.class.php"; //******************** 配置信息 ******************************** $smtpserver = "smtp.163.com";//SMTP服务器 $smtpserverport =25;//SMTP服务器端口 $smtpusermail = "onestopweb@163.com";//SMTP服务器的用户邮箱 $smtpemailto = $_POST['toemail'];//发送给谁 $smtpuser = "onestopweb";//SMTP服务器的用户帐号 $smtppass = "123456";//SMTP服务器的用户密码 $mailtitle = $_POST['title'];//邮件主题 $mailcontent = "<h1>".$_POST['content']."</h1>";//邮件内容 $mailtype = "HTML";//邮件格式(HTML/TXT),TXT为文本邮件 //************************ 配置信息 **************************** $smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);//这里面的一个true是表示使用身份验证,否则不使用身份验证. $smtp->debug = false;//是否显示发送的调试信息 $state = $smtp->sendmail($smtpemailto, $smtpusermail, $mailtitle, $mailcontent, $mailtype); echo "<div style='width:300px; margin:36px auto;'>"; if($state==""){ echo "对不起,邮件发送失败!请检查邮箱填写是否有误。"; echo "<a href='index.html'>点此返回</a>"; exit(); } echo "恭喜!邮件发送成功!!"; echo "<a href='index.html'>点此返回</a>"; echo "</div>"; ?>
email.class.php
<?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; function 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 = 3600; $this->auth = $auth; $this->user = $user; $this->pass = $pass; $this->host_name = "localhost"; $this->log_file = ""; $this->sock = FALSE; } function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "") { $mail_from = $this->get_address($this->strip_comment($from)); $body = ereg_replace("(^|(\r\n))(\.)", "\1.\3", $body); $header = "MIME-Version:1.0\r\n"; if($mailtype=="HTML"){ $header .= "Content-Type:text/html\r\n"; } $header .= "To: ".$to."\r\n"; if ($cc != "") { $header .= "Cc: ".$cc."\r\n"; } $header .= "From: $from<".$from.">\r\n"; $header .= "Subject: ".$subject."\r\n"; $header .= $additional_headers; $header .= "Date: ".date("r")."\r\n"; $header .= "X-Mailer:By Redhat (PHP/".phpversion().")\r\n"; list($msec, $sec) = explode(" ", microtime()); $header .= "Message-ID: <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">\r\n"; $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("Error: Cannot send email to ".$rcpt_to."\n"); $sent = FALSE; continue; } if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) { $this->log_write("E-mail has been sent to <".$rcpt_to.">\n"); } else { $this->log_write("Error: Cannot send email to <".$rcpt_to.">\n"); $sent = FALSE; } fclose($this->sock); $this->log_write("Disconnected from remote host\n"); } return $sent; } function smtp_send($helo, $from, $to, $header, $body = "") { if (!$this->smtp_putcmd("HELO", $helo)) { return $this->smtp_error("sending HELO command"); } if($this->auth){ if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) { return $this->smtp_error("sending HELO command"); } if (!$this->smtp_putcmd("", base64_encode($this->pass))) { return $this->smtp_error("sending HELO command"); } } if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">")) { return $this->smtp_error("sending MAIL FROM command"); } if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">")) { return $this->smtp_error("sending RCPT TO command"); } if (!$this->smtp_putcmd("DATA")) { return $this->smtp_error("sending DATA command"); } if (!$this->smtp_message($header, $body)) { return $this->smtp_error("sending message"); } if (!$this->smtp_eom()) { return $this->smtp_error("sending <CR><LF>.<CR><LF> [EOM]"); } if (!$this->smtp_putcmd("QUIT")) { return $this->smtp_error("sending QUIT command"); } return TRUE; } function smtp_sockopen($address) { if ($this->relay_host == "") { return $this->smtp_sockopen_mx($address); } else { return $this->smtp_sockopen_relay(); } } function smtp_sockopen_relay() { $this->log_write("Trying to ".$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("Error: Cannot connenct to relay host ".$this->relay_host."\n"); $this->log_write("Error: ".$errstr." (".$errno.")\n"); return FALSE; } $this->log_write("Connected to relay host ".$this->relay_host."\n"); return TRUE; } function smtp_sockopen_mx($address) { $domain = ereg_replace("^.+@([^@]+)$", "\1", $address); if (!@getmxrr($domain, $MXHOSTS)) { $this->log_write("Error: Cannot resolve MX \"".$domain."\"\n"); return FALSE; } foreach ($MXHOSTS as $host) { $this->log_write("Trying to ".$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("Warning: Cannot connect to mx host ".$host."\n"); $this->log_write("Error: ".$errstr." (".$errno.")\n"); continue; } $this->log_write("Connected to mx host ".$host."\n"); return TRUE; } $this->log_write("Error: Cannot connect to any mx hosts (".implode(", ", $MXHOSTS).")\n"); return FALSE; } function smtp_message($header, $body) { fputs($this->sock, $header."\r\n".$body); $this->smtp_debug("> ".str_replace("\r\n", "\n"."> ", $header."\n> ".$body."\n> ")); return TRUE; } function smtp_eom() { fputs($this->sock, "\r\n.\r\n"); $this->smtp_debug(". [EOM]\n"); return $this->smtp_ok(); } function smtp_ok() { $response = str_replace("\r\n", "", fgets($this->sock, 512)); $this->smtp_debug($response."\n"); if (!ereg("^[23]", $response)) { fputs($this->sock, "QUIT\r\n"); fgets($this->sock, 512); $this->log_write("Error: Remote host returned \"".$response."\"\n"); return FALSE; } return TRUE; } function smtp_putcmd($cmd, $arg = "") { if ($arg != "") { if($cmd=="") $cmd = $arg; else $cmd = $cmd." ".$arg; } fputs($this->sock, $cmd."\r\n"); $this->smtp_debug("> ".$cmd."\n"); return $this->smtp_ok(); } function smtp_error($string) { $this->log_write("Error: Error occurred while ".$string.".\n"); return FALSE; } function log_write($message) { $this->smtp_debug($message); if ($this->log_file == "") { return 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("Warning: Cannot open log file \"".$this->log_file."\"\n"); return FALSE;; } flock($fp, LOCK_EX); fputs($fp, $message); fclose($fp); return TRUE; } function strip_comment($address) { $comment = "\([^()]*\)"; while (ereg($comment, $address)) { $address = ereg_replace($comment, "", $address); } return $address; } function get_address($address) { $address = ereg_replace("([ \t\r\n])+", "", $address); $address = ereg_replace("^.*<(.+)>.*$", "\1", $address); return $address; } function smtp_debug($message) { if ($this->debug) { echo $message; } } } ?>
效果图:
相关推荐
### PHP实现163邮箱自动发送邮件的知识点 #### 1.SMTP协议及配置 - **SMTP协议**: SMTP全称为Simple Mail Transfer Protocol,即简单邮件传输协议,是一种用于电子邮件传输的协议。它负责在邮件服务器之间交换信息...
在PHP开发中,有时我们需要向用户发送验证邮件、通知或者其他的自动消息,这时可以借助PHPMailer这个类库来实现。本资源提供了一个基于PHPMailer的邮件发送封装类,方便开发者快速集成邮件发送功能。下面将详细讲解...
php利用qq或者163信箱的服务功能,自动发送邮件,比如遇到一些情况,可以给自己发送邮件,提醒自己
163邮箱作为国内常用的邮件服务提供商,通过PHPMailer进行配置和使用,可以实现自动化邮件发送功能。在实际操作中,需要注意的是正确配置SMTP服务器参数,确保账户安全,以及处理可能出现的错误情况。
在这个场景中,开发者可能需要编写代码来自动化处理163邮箱的相关操作,例如获取联系人列表、发送邀请邮件等。以下是对这个主题的详细解释: 1. PHP CURL库:PHP的CURL库(Client URL Library)是一个强大的工具,...
【标题】"浪潮网页邮件群发系统v4.5-0410支持126.163.tom.sina.hotmail.yeah邮箱发送"所涉及的知识点主要集中在电子邮件营销和自动化工具上,特别是针对多个主流邮件服务商的兼容性。 1. **电子邮件营销**:电子...
ThinkPHP是一个基于MIT协议的轻量级PHP开发框架,而PHPMailer是一个功能强大的邮件发送类库。结合两者可以便捷地在ThinkPHP框架中实现邮件发送功能。下面介绍的是在ThinkPHP框架中使用PHPMailer进行邮件发送的具体...
当邮件无法成功发送时,系统会自动记录并报告这些失败的原因,帮助用户及时调整策略,优化邮件内容或处理账号问题,从而提高邮件的送达率和打开率。 总结起来,929网络快车邮件群发系统PHP版是一款集易用性、灵活性...
我们可以利用phpmailer登录到我们指定的邮件然后再利用这个邮件给我们自动发邮件了,这个现在免费的邮箱像163,sina都支持,好了费话不说多了来看看一段phpmainer 163邮件发送邮件吧。
4. **Linux定时任务**:为了实现邮件的后台自动发送,可以使用Linux的cron job来定时执行PHP脚本。`mail_001.php`是入口脚本,它调用了邮件发送接口并处理邮件列表。 5. **代码结构**: - **入口脚本**:`mail_001...
3:备用发件箱 - 当邮件发送失败时,程序会自动启用备用发件箱再发送一次(建议不要用“发件箱”中已经存在的帐号) 4:为尽量避免邮件进入垃圾箱,建议每发送300封,就更换一次内容 5:本程序无需mysql,建议直接在...
### PHPMailer发送邮件功能详解 #### 一、引言 在Web开发中,电子邮件功能是一项基本但非常重要的功能。PHPMailer作为一个成熟的邮件处理类库,提供了丰富的API来满足各种邮件发送需求,包括纯文本邮件、HTML邮件...
在IT行业中,邮箱的自动化处理是一项常见的需求,例如自动收取邮件、管理邮件等。这个"邮箱的cookies收信 PHP源码"项目就是针对这一需求的一个解决方案。它利用了cookies技术来实现无需用户登录就能访问邮箱并获取...
在PHP编程中,邮件发送是常见的功能之一,用于与用户进行通信或自动化处理。`mail()`函数是PHP内置的函数,用于发送简单的文本邮件,但它的功能相对有限,不支持HTML格式或者添加附件等复杂需求。为了实现这些高级...
thinkphp实现邮件收发是一个典型的后端开发任务,通常涉及邮件客户端授权、邮件服务器配置、邮件发送、接收等过程。本知识点将详细介绍如何在thinkphp框架下实现163邮箱和QQ邮箱的邮件收发。 首先,了解邮件收发...
在PHP开发中,有时我们需要向用户发送验证邮件、通知或者其他的自动消息,这时可以借助PHPMailer这个库来实现。PHPMailer是一个广泛使用的PHP邮件发送类,支持SMTP验证、HTML邮件等特性,使得发送邮件变得更加简单。...
`form`标签的`action`属性指定了处理表单数据的服务器端脚本,而`method`属性(如`post`或`get`)决定了数据如何发送到服务器。 对于网易163邮箱,其登录页面可能还会包括一些额外的功能,比如记住密码、自动填充、...