How to configure WAMP (localhost) to send email using Gmail?(如何配置 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
这篇关于如何配置 WAMP (localhost) 以使用 Gmail 发送电子邮件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何配置 WAMP (localhost) 以使用 Gmail 发送电子邮件?
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01