Windows server支持WordPress自动发邮件

前端之家收集整理的这篇文章主要介绍了Windows server支持WordPress自动发邮件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

当我们的wordpress网站使用了 数据库备份插件后,很多时候支持自动把备份的数据库发送到我们的指定邮箱,当前提是我们的服务器要支持 mail()函数在windows下调用,下面网络的方法完全可以解决,小编已经测试。

1、从官网http://glob.com.au/sendmail/下载sendmail.zip


2、解压到C:下,例如C:PHPsendmail,最好短路径,长路径名有可能产生问题。


3、修改PHP.ini如下

sendmail_path = "C:wampsendmailsendmail.exe -t"

4、根据你自己的配置环境修改sendmail.ini。


第一次最好启用 debug.log_file,error_logfile,以查看sendmail是否生效。

5、重启apache


用sendmail结合其它的smtp服务器,如smtp.163.com来实现发邮件。现在大部分邮箱都要求smtp验证,所以要在sendmail.ini中加入用户名和密码。


PHP.ini配置 (以用163邮箱为例)

[mail function]

; For Win32 only.

SMTP = smtp.163.com

smtp_port = 25

; For Win32 only.

sendmail_from = yourusername@163.com

; For Unix only. You may supply arguments as well (default: “sendmail -t -i”).

sendmail_path = “D:xamppsendmailsendmail.exe -t”

6、sendmail.ini配置

[sendmail]

; you must change mail.mydomain.com to your smtp server

smtp_server=smtp.163.com

smtp_port=25

auth_username=yourusername

auth_password=yourpassword

force_sender=yourusername@163.com

7、你如果使用xampp原版的已经集成了sendmail,如果是汉化精简版的,需要手动把sendmail复制到xampp文件夹下面,再重新配置。

原文链接:https://www.f2er.com/wordpress/422774.html

猜你在找的wordpress相关文章