php 使用sendmail发送邮件
Posted 影响力
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用sendmail发送邮件相关的知识,希望对你有一定的参考价值。
php 使用sendmail发送邮件
1.配置php.ini
SMTP=smtp.163.com
sendmail_from = [email protected]
sendmail_path = "C:/xampp/sendmail/sendmail.exe -t"
2.配置sendmail.ini
smtp_server=smtp.163.com
[email protected]
auth_password=sqm100
3.测试
<?php
if (mail("[email protected]", "测试", "测试邮件")) {
echo ‘success!‘;
} else {
echo ‘fail‘;
}
以上是关于php 使用sendmail发送邮件的主要内容,如果未能解决你的问题,请参考以下文章
php.ini,sendmail 配置使用 php 脚本发送电子邮件
我配置了我的 sendmail.ini 和 php.ini 但我无法使用 php 中的 mail() 函数发送电子邮件