如何在 Windows 7 中运行 PHP 邮件脚本?
Posted
技术标签:
【中文标题】如何在 Windows 7 中运行 PHP 邮件脚本?【英文标题】:How to run PHP mail scripts in Windows 7? 【发布时间】:2012-05-27 14:01:12 【问题描述】:我正在尝试使用 xampp 在我的本地计算机 (Windows 7) 中运行 php 邮件脚本。我可以成功运行 PHP 邮件表单,但是在发送电子邮件时它会显示此消息-
**Warning: mail() [function.mail]: SMTP server response: 553 We do not relay non-local mail, sorry. in C:\xampp\htdocs\mail\sendeail.php on line 146**
如何解决这个问题,或者是否可以使用 xampp 以任何其他方式从我的本地计算机发送电子邮件?
【问题讨论】:
此错误消息是由您的邮件服务器而不是 PHP 生成的。很可能,这表明您在 php.ini 中设置了错误的 SMTP 服务器。 【参考方案1】:看了这么多 YouTube 视频和博客后,这对我有用:
确保您的 SMTP 服务状态显示为 ACTIVATED --> 转到 this URL 以获取精彩演示。
转到 this URL,使用您将用于测试 php 电子邮件的 gmail 帐户登录,然后在“安全”选项卡中,找到“访问不太安全的应用程序”,然后单击“启用”(您可以随时在您的 php 电子邮件测试后再次禁用它)。
从一个全新的php.ini
文件开始(希望你复制了你原来的php.ini
)。这样做的原因是您将拥有一个未被篡改的php.ini
。 php.ini
中的以下这些行必须被注释(有一个前导 ;
)或取消注释(没有前导 ;
),这是至关重要的):
[mail function]
; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
;SMTP = localhost
;smtp_port = 25
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
;sendmail_path="C:\xampp\mailtodisk\mailtodisk.exe"
extension=php_openssl.dll
php.ini
中的所有其他内容,您别管了。
让我们仔细检查这些行是否被注释(有一个前导 ;
):
;SMTP= local host
;smtp_port = 25
;sendmail_path="C:\xampp\mailtodisk\mailtodisk.exe"
那么sendmail.ini
一定是这样的——我基本上是把整个东西都复制到这里了。在上面写着your.email.gmail
的地方输入您自己的gmail 地址,与密码相同:
[sendmail]
; you must change mail.mydomain.com to your smtp server,
; or to IIS's "pickup" directory. (generally C:\Inetpub\mailroot\Pickup)
; emails delivered via IIS's pickup directory cause sendmail to
; run quicker, but you won't get error messages back to the calling
; application.
smtp_server=smtp.gmail.com
; smtp port (normally 25)
smtp_port=465
; SMTPS (SSL) support
; auto = use SSL for port 465, otherwise try to use TLS
; ssl = alway use SSL
; tls = always use TLS
; none = never try to use SSL
smtp_ssl=auto
; the default domain for this server will be read from the registry
; this will be appended to email addresses when one isn't provided
; if you want to override the value in the registry, uncomment and modify
;default_domain=mydomain.com
; log smtp errors to error.log (defaults to same directory as sendmail.exe)
; uncomment to enable logging
error_logfile=error.log
; create debug log as debug.log (defaults to same directory as sendmail.exe)
; uncomment to enable debugging
;debug_logfile=debug.log
; if your smtp server requires authentication, modify the following two lines
auth_username=your.email@gmail.com
auth_password=your email password
; if your smtp server uses pop3 before smtp authentication, modify the
; following three lines. do not enable unless it is required.
pop3_server=
pop3_username=
pop3_password=
; force the sender to always be the following email address
; this will only affect the "MAIL FROM" command, it won't modify
; the "From: " header of the message content
force_sender=
; force the sender to always be the following email address
; this will only affect the "RCTP TO" command, it won't modify
; the "To: " header of the message content
force_recipient=
; sendmail will use your hostname and your default_domain in the ehlo/helo
; smtp greeting. you can manually set the ehlo/helo name if required
hostname=
【讨论】:
以上是关于如何在 Windows 7 中运行 PHP 邮件脚本?的主要内容,如果未能解决你的问题,请参考以下文章