当你还在纠结php内置的mail()函数不能发送邮件时,那么你现在很幸运,此时的这篇文章可以帮助到你!
php利用smtp类来发邮件真是屡试不爽,我用过很久了,基本上没出过问题。本博客后台,当博主回复留言时候,会自动给网友发一封有新回复提示的邮件也是用的本文这个方法实现的。
smtp类发送邮件的方法其实很简单,也很稳定,类是别人已经写好的了,你只需要调用就行了。几行简单的配置就能发邮件,是不是很期待的试一试呢!
以下就是核心代码:
<?php
require_once "Smtp.class.php";
//******************** 配置信息 ********************************
$smtpserver = "smtp.126.com";//SMTP服务器
$smtpserverport =25;//SMTP服务器端口
$smtpusermail = "new2008oh@126.com";//SMTP服务器的用户邮箱
$smtpemailto = $_POST['toemail'];//发送给谁
$smtpuser = "new2008oh";//SMTP服务器的用户帐号(或填写new2008oh@126.com,这项有些邮箱需要完整的)
$smtppass = "您的邮箱密码";//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>";
?>
完整范例下载:phpmail技术.zip
效果截图欣赏:
填写收件人,标题和内容后提交
返回成功的提示
瞬间便接收到了邮件
本博客所有案例都经过本人亲自测试,方法也绝对简单易懂,希望大家多多支持,有问题可以与我交流!
请记住我,php学习博客
文章出自:https://www.daixiaorui.com/read/16.html 本站所有文章,除注明出处外皆为原创,转载请注明本文地址,版权所有。
很好的方法值得推荐
不行啊我各种报错啊
Trying to SMTP.163.com:465 Error: Remote host returned "" Error: Cannot connenct to relay host SMTP.163.com Error: (0) Error: Cannot send email to 1
' and 1=1
你好,我自己做一个html的网页,想问问怎么样才能使用phpmailer通过smtp发送在线邮件?怎么把phpmailer和html网页结合起来使用?谢谢。
Fatal error: Uncaught Error: Class 'Smtp' not found in D:\\phpEnv\\www\\localhost\\email\\sendmail.php:34 Stack trace: #0 {main} thrown in D:\\phpEnv\\www\\localhost\\email\\sendmail.php on line 34 很奇怪,不知什么原因!
怎么修改发件人呢
500错误怎么解决
2020-02-09 11:12:11  @回复
没有自定义发件人名称,不自定义发件人名称,这样邮箱直接显示发件人名称为发件人邮箱地址,不太好看
2020-12-06 22:50:44  @回复
2020-12-07 11:47:22  @回复
点击提交表单的时候,如何当前页面弹出弹窗
我怎么会每天收到一封英文的邮件呢,好像是广告,你们有没有收到? 本文章来源于 代潇瑞博客 原文地址:https://www.daixiaorui.com/read/16.html
我怎么会每天收到一封英文的邮件呢,好像是广告,你们有没有收到? 本文章来源于 代潇瑞博客 原文地址:https://www.daixiaorui.com/read/16.html
我怎么会每天收到一封英文的邮件呢,好像是广告,你们有没有收到?
我怎么会每天收到一封英文的文件呢,应该是广告,你们有没有?
TLS怎么能支持?
我在自己电脑上测试没问题,放在服务器上就500 Internal Server Error
厉害了,学习了
想做成:称呼、电话、留言内容。该怎么修改??或者怎么添加??求大神解答
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; smtp has a deprecated constructor in2发送邮件成功 发送是成功了,且受到了邮件,但是报错咋整...
我测试时候点了多少次发送 它就发送多少次相同内容到邮箱 请问如何限制发送次数
//$header .= "Content-Type:text/html\\r\\n"; $header .= "Content-Type:text/html;charset=utf-8\\r\\n"; 发邮件如果乱码 这样解决 修改 smtp.class.php
如何才能做到在当前页 部分刷新 提交表单 提示成功还是是失败??
请问如何修改发件人的名称呢?
我本地电脑可以发,但放在服务器上会提示:Trying to smtp.163.com:25
2021-07-06 17:34:55  @回复
你好,邮件发不了。提示如下,麻烦帮我看看。 Trying to smtp.163.com:25 220 163.com Anti-spam GT for Coremail System (163com[20141201]) Connected to relay host smtp.163.com > HELO localhost 250 OK >
2018-11-04 14:36:37  @回复
2018-11-04 15:38:09  @回复
如何在源码中填入 收件人,主题,正文,谢谢在!!
您好,怎么在源码中填入收件人邮箱,主题,和正文
测试错误,求指点。
date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier.
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the
ceshi
本地可以,服务器上测试不可以。。。
亲测一下
Trying to smtp.163.com:25 Error: Cannot connenct to relay host smtp.163.com Error: Connection timed out (110) 出现这个求解
MAIL FROM: 250 Ok > RCPT TO: 501 Bad address syntax Error: Remote host returned "501 Bad address syntax" Error: Error occurred while sending RCPT TO command. Error: Cannot send email to
2019-03-05 00:08:42  @回复
2019-05-11 22:13:21  @回复
你好请问我的留言也想你的这样有邮箱,但是怎样添加到这个源码上去?
TH LOGIN MjUzNDAwODkyOQ ==RCPT TO: 501错误的地址语法错误:远程主机返回“501错误的地址语法”错误:发送RCPT TO命令时出错。错误:无法发送电子邮件至与远程主机断开连接
很奇怪,最近我两台机器分别运行这个php,一台正常,另外一台打开调试开关后提示:Trying to smtp.sohu.com:25 Error: Cannot connenct to relay host smtp.sohu.com Error: Invalid argument (22) Error: Cannot send email to 702730136@qq.com