我使用xammp,我想配置XAMPP从我的localhost发送邮件 通过gmail。
我做了正确的设置,但不知怎的,我的localhost不发送电子邮件。
这是我在php.ini文件和sendmail.ini文件中的设置。
的php.ini:
[mail function]
SMTP = localhost
smtp_port= 587
sendmail_from = example@gmail.com
sendmail_path = sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
sendmail.ini:
[sendmail]
smtp_server=smtp.gmail.com
smtp_port=587
error_logfile=error.log
debug_logfile=debug.log
auth_username= example@gmail.com
auth_password= *********
force_sender=example@gmail.com
我错了什么?