时间:2021-07-01 10:21:17 帮助过:13人阅读
②配置:在 sendmail.ini文件中,我们以QQ邮箱为例。
smtp_server=smtp.qq.com
smtp_port=465
smtp_ssl=auto
error_logfile=error.log
auth_username=291522145(邮箱账号)
auth_password=saturday123456(邮箱 密码)
force_sender=291522145@qq.com
③配置php.ini:
[mail function]
; For Win32 only.
; http://php.com/smtp
SMTP = smtp.qq.com
sendmail_from = 291522145@qq.com
sendmail_path ="i:\abc\sendmail\sendmail.exe -t"
mail.add_x_header = On
④php程序:
ini_set('display_errors',0);
error_reporting(-1);
ini_set('log_errors',1);
error_log('today ids rain',1,'291522145@qq.com');
所有配置好后,重启服务,然后运行php程序,就能 发现你的 qq邮箱里多了一封邮件。
以上就介绍了php发送错误日志邮件,包括了php,错误方面的内容,希望对PHP教程有兴趣的朋友有所帮助。