如何配置 WAMP (localhost) 以使用 Gmail 发送电子邮件?
我想使用本地主机中的 mail() 函数.我安装了 WAMP 和一个 Gmail 帐户.我知道 Gmail 的 SMTP 是 smtp.gmail.com,端口是 465 (来自 gmail 的更多信息).我需要在 WAMP 中配置什么才能使用 mail() 函数?
I want to use the mail() function from my localhost. I have WAMP installed and a Gmail account. I know that the SMTP for Gmail is smtp.gmail.com and the port is 465 (more info from gmail). What I need to configure in WAMP so I can use the mail() function?
谢谢!!
推荐答案
Gmail 服务器使用 SSL 或 TLS 下的 SMTP 身份验证.我认为在这种情况下无法使用 mail()
功能,因此您可能需要检查以下替代方案:
Gmail servers use SMTP Authentication under SSL or TLS. I think that there is no way to use the mail()
function under that circumstances, so you might want to check these alternatives:
- PEAR::Mail
- phpMailer
- NetteMail
它们都支持 SSL 下的 SMTP 身份验证.
They all support SMTP auth under SSL.
您需要在 php.ini 中启用 php_openssl
扩展.
You'll need to enable the php_openssl
extension in your php.ini.
其他资源:
- 如何使用 SMTP 身份验证从 PHP 脚本发送电子邮件(使用
PEAR::Mail
) - 使用 PHP 发送电子邮件Gmail(使用 phpMailer)
- 邮寄使用
NetteMail
- How to Send Email from a PHP Script Using SMTP Authentication (using
PEAR::Mail
) - Send email using PHP with Gmail (using phpMailer)
- Mailing using
NetteMail
相关文章