How To Send Emails Using Google SMTP Server Using XAMPP?(如何使用 XAMPP 使用 Google SMTP 服务器发送电子邮件?)
问题描述
在 php.ini 我设置:
In php.ini I set:
SMTP = smtp.gmail.com
smtp_port = 465
; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = mygmail@gmail.com
在我的 sendmail.ini 中:
In my sendmail.ini:
smtp_server=smtp.gmail.com
smtp_ssl=ssl
auth_username=mygmail@gmail.com
auth_password=mygmail password
在我的错误日志中:
13/05/18 23:33:30 : Socket Error # 10060<EOL>Connection timed out.
这封电子邮件实际上发送了两次,但在 99% 的情况下,我收到与上述相同的错误.我禁用了路由器的 SPI 和计算机的防火墙.有什么想法吗?
The email actually sent twice, but 99% of the time, I get the same error as above. I disabled my router's SPI, and my computer's firewall. Any ideas?
推荐答案
大多数带有 Windows 的本地机器不配备 SMTP 服务器.您可以使用外部 SMTP 服务器并在 php.ini
文件中对其进行配置,但无法进行 SMTP 身份验证.
Most local boxes with Windows don't come with a SMTP server. You could use an external SMTP server and configure it in your php.ini
file, but SMTP authentication is not possible.
我推荐你使用 PHPMailer,是一个简单灵活的 PHP 类,可以使用带有身份验证的 SMTP 服务器.它也比使用捆绑的 PHP mail()
函数更安全.
I recommend you to use PHPMailer, is a simple and flexible PHP Class, that can use a SMTP server with authentication. It is also more secure than using bundled PHP mail()
function.
http://phpmailer.worxware.com/
这篇关于如何使用 XAMPP 使用 Google SMTP 服务器发送电子邮件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 XAMPP 使用 Google SMTP 服务器发送电子邮件?
- Laravel 仓库 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01