如何使用 PHP 从本地 wamp 服务器发送电子邮件?
我需要从我的本地主机发送电子邮件。
我正在使用 wamp 服务器,我的网站加载在我自己的服务器上,请问您能建议如何使用我的本地主机和 PHP 发送电子邮件吗?
I need to send email messages from my localhost.
I am using wamp server and my site is loaded on my own server, please could you suggest how to send emails using my localhost and PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以下是实现此目的的步骤:
通过此 链接
打开sendmail.ini并进行如下配置:
smtp_server=smtp.gmail.com
主机名=localhost
访问您的电子邮件帐户。单击齿轮工具>设置>转发和 POP/IMAP > IMAP 访问。点击“启用 IMAP”,然后保存更改。
运行您的 WAMP 服务器。在 Apache 模块下启用 ssl_module。
接下来,启用 PHP 下的 php_openssl 和 php_sockets。
打开php.ini并按照以下代码进行配置。基本上,您只需设置 sendmail_path 即可。
我希望这对你有用..
Here's the steps to achieve this:
Download the sendmail.zip through this link
Open sendmail.ini and set the configuration as follows:
smtp_server=smtp.gmail.com
hostname=localhost
Access your email account. Click the Gear Tool > Settings > Forwarding and POP/IMAP > IMAP access. Click "Enable IMAP", then save your changes.
Run your WAMP Server. Enable ssl_module under Apache Module.
Next, enable php_openssl and php_sockets under PHP.
Open php.ini and configure it as the codes below. Basically, you just have to set the sendmail_path.
I hope this will work for you..
打开 php.ini 并找到 [mail function] 部分
,之后您必须更改以下与您的 SMTP 设置相关的选项。
要更改的设置:
最后,在 PHP 脚本中,您必须使用邮件功能 http:// php.net/manual/en/function.mail.php
Open your php.ini and find the [mail function] section
After that you have to change the options that are following and are relevant to your SMTP settings.
Settings to change :
Finaly from with your PHP script you have to use the mail function http://php.net/manual/en/function.mail.php
您可以使用 PHP 中的邮件功能。
http://php.net/manual/en/function.mail.php
当您自己托管它时,您必须检查您的互联网提供商 smtp 并用它更新 php.ini,这应该可以工作。
You can use the mail function in PHP.
http://php.net/manual/en/function.mail.php
As you are hosting it yourself, you have to check your internet provider smtp and update php.ini with it and that should work.
在 php.ini 中,设置以下参数:
In php.ini, set following parameters: