我很难解决从本地XAMPP服务器发送邮件的问题。我使用以下设置更改了sendmail.ini文件:
[sendmail的]
smtp_server=smtp.gmail.com
smtp_port=465
smtp_ssl=auto
debug_logfile=debug.log
error_logfile=error.log
auth_username=myusername
auth_password=mypassword
force_sender=myusername
在我的邮件部分的php.ini中,我评论了除此之外的所有行:
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
我得到的错误如下:
Socket Error # 10060 Connection timed out.
我使用的操作系统是Windows 8.1。在具有完全相同的xampp安装的其他计算机上,它可以正常工作。
有人知道可能出现什么问题吗?