XAMPP Sendmail使用Gmail帐户

时间:2011-02-09 18:05:16

标签: email smtp gmail xampp

我正在尝试通过XAMPP配置Sendmail来发送电子邮件。在我的sendmail.ini中,我有以下设置:

# Set default values for all following accounts.

logfile "C:\xampp\sendmail\sendmail.log
account Gmail
tls on
port 587
tls_certcheck off
host smtp.gmail.com
from myemail@gmail.com
auth on
user myemail06@gmail.com
password mypassword

account default : Gmail

我已经创建了一个这样的测试脚本:

$to = "testemail@btinternet.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$headers = "From: myemail06@gmail.com" . "\r\n";
if (mail($to, $subject, $body, $headers)) {
    echo ("Message successfully sent!");
} else {
    echo ("Message delivery failed...");
}

我收到一条消息,说电子邮件已发送,但它永远不会到达我在日志中:

sendmail:交付期间出错:必须先发出STARTTLS命令。

有人知道这里的问题是什么吗?

提前致谢!

达伽兹

12 个答案:

答案 0 :(得分:35)

这对我有用。希望没有其他人像我一样燃烧油来解决这个问题。

这是我的sendmail.ini

[sendmail]

smtp_server=smtp.gmail.com
smtp_port=25
error_logfile=error.log
debug_logfile=debug.log
auth_username=myemail@gmail.com
auth_password=yourgmailpassword
force_sender=myemail@gmail.com

php / php.ini ----除了sendmail_path& mail.add_x_header

[mail function]
; For Win32 only.
; http://php.net/smtp
;SMTP = localhost
; http://php.net/smtp-port
;smtp_port = 25

; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = postmaster@localhost

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header = Off

; Log all mail() calls including the full path of the script, line #, to address and headers
;mail.log = "C:\xampp\apache\logs\php_mail.log"

在我更新sendmail文件(旧的不支持smtp)后,这对我有用

  • 转到http://glob.com.au/sendmail/并获取最新的sendmail zip文件
  • 解压缩到桌面并将文件复制到\ xampp \ sendmail文件夹中,替换那里的所有内容。正好!
  • 现在打开sendmail.ini并复制粘贴我上面显示的内容。(首先删除该文件中的所有内容或只是评论所有内容!)
  • 注意:您不需要为此启动Mercury服务器。

当我遇到这个问题时,我正在localhost上创建一个密码恢复php。我需要向用户发送密码。 - 你的php看起来很好看

答案 1 :(得分:13)

好的,今天,最好的答案对我不起作用。但是,这样做了:

sendmail.ini

中的

[sendmail]
smtp_server=smtp.gmail.com
smtp_port=587
error_logfile=error.log
debug_logfile=debug.log
auth_username=****@gmail.com
auth_password=*******
force_sender=****@gmail.com
php.ini中的

[mail function]
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"

基于端口@:http://support.google.com/mail/bin/answer.py?hl=en&answer=13287

答案 2 :(得分:3)

我所要做的就是将“允许安全性较低的应用访问您的帐户”切换为开启状态。我想这是创建应用专用密码的替代方法。

https://support.google.com/accounts/answer/6010255获取信息

https://www.google.com/settings/security/lesssecureapps用于切换

在出于安全目的而完成后,可能值得将其关闭。

答案 3 :(得分:1)

这些是最新的Google SMTP服务器要求:

  1. Gmail SMTP服务器地址: smtp.gmail.com
  2. Gmail SMTP密码:(您的Gmail密码)
  3. Gmail SMTP端口(TLS): 587
  4. Gmail SMTP端口(SSL): 465
  5. 需要Gmail SMTP TLS / SSL:
  6. Google SMTP Requirements

    如果您只是使用SSL,那么所需的Captcha验证测试就会变得复杂,所以我只需将SSL设置为auto即可在SSL失败时尝试TLS。 enter image description here

答案 4 :(得分:1)

只是添加已经很好的回复。确保以管理员身份运行XAMPP。这就是为我解决的问题。

答案 5 :(得分:0)

a)更改php.ini 在文件路径“[驱动器号]:[XAMPP目录] \ php”中找到php.ini。例如C:\ XAMPP \ PHP \ php.ini中

在php.ini文件中搜索sendmail_path并删除它前面的半冒号“;”[我没有路径]。

[mail function]
; For Win32 only.

SMTP = smtp.gmail.com

smtp_port = 25

; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = [your_gmail_username]@gmail.com
sendmail_path = "\"C:\xampplite\sendmail\sendmail.exe\" -t"

b)更改sendmail.ini 在文件路径中找到sendmail.ini是“[驱动器号]:[XAMPP目录] \ sendmail”,例如C:\ XAMPP \ sendmail的\ sendmail.ini

评论“Mercury”和“免费邮件服务示例”内容为 如下所示:

 # Mercury  <br/> 
 #account Mercury  <br/> 
 #host localhost  <br/> 
 #from postmaster@localhost  <br/> 
 #auth off  <br/> 
 # A freemail service example  <br/> 
 #account Hotmail  <br/> 
 #tls on  <br/> 
 #tls_certcheck off  <br/> 
 #host smtp.live .com  <br/> 
 #from [exampleuser]@hotmail.com  <br/> 
 #auth on  <br/> 
 #user [exampleuser]@hotmail .com  <br/> 
 #password [examplepassword]  <br/> 

℃。添加Gmail帐户。

示例:

account Gmail
tls on 
tls_certcheck off
host smtp.gmail.com 
 from [your_gmail_username]@gmail.com 
auth on
  account default : Gmail 

d。重启Apache服务器


我没有使用gmail。我使用了我的托管帐户。如果这样做,请确保SMTP设置正确。我的邮件是mail.abc.com而不是smtp.gmail.com。 此代码来自2个网站。您需要更改这两个文件。 我让它在win200sp4盒子上运行Xampp 1.73。除这两个文件外的所有默认设置。 php.ini和sendmail.ini

答案 6 :(得分:0)

使用Gmail时还有另一个问题。 Gmail现在具有安全性,因此您必须生成应用程序专用密码 - 您无法使用密码来进行正常的Gmail访问。我通过尝试上面的示例发现了这一点,然后注意到在sendmail文件夹中生成了错误日志。在错误日志中,我遇到了一条消息,指出了这一点。

答案 7 :(得分:0)

我知道这是一篇古老的帖子,但我想我会分享以下事实:以下内容对我有用。

我目前在Windows 7 ENT上使用带有Apache / 2.4.9(Win64)PHP / 5.5.12和MySQL 5.6.17的WAMP服务器。

我遵循了本教程:http://blog.techwheels.net/send-email-from-localhost-wamp-server-using-sendmail/

答案 8 :(得分:0)

THIS IS WHAT YOU SENDMAIL SHOULD LOOK LIKE


[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 = always 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 Here
auth_password=Your Password Here

; 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=Your Email Here

; 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=smtp.gmail.com

THIS IS WHAT YOU PHP.INI FILE SHOULD LOOK LIKE

[mail function]
; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
smtp_server=smtp.gmail.com
smtp_port = 465

; For Win32 only.
; http://php.net/sendmail-from
;sendmail_from = postmaster@localhost

; XAMPP IMPORTANT NOTE (1): If XAMPP is installed in a base directory with spaces (e.g. c:\program filesC:\xampp) fakemail and mailtodisk do not work correctly.
; XAMPP IMPORTANT NOTE (2): In this case please copy the sendmail or mailtodisk folder in your root folder (e.g. C:\sendmail) and use this for sendmail_path.  
; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"

; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the C:\xampp\mailoutput folder
;sendmail_path = "C:\xampp\mailtodisk\mailtodisk.exe"

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
mail.add_x_header=Off

答案 9 :(得分:0)

我找不到完整的解决方案,因此在这里为我们编译了一些源https://meetanshi.com/blog/send-mail-from-localhost-xampp-using-gmail/#

enter image description here

您还没有完成!最后一件事是获取应用程序密码

(auth_password =您的Gmail密码)

而不是您的Gmail帐户密码如下:

在浏览器上登录您的gmail帐户,然后单击右上角的个人资料图标,选择

“管理您的Google帐户”

,在左列上单击安全性,找到框

“登录Google”

点击

“应用密码”

,在这里您需要为此

下的xampp发送邮件创建密码。

“选择要为其生成应用密码的应用和设备。”

生成密码并将生成的密码复制到

(auth_password = just-generation-password)在屏幕截图中的php.ini中。

就是这样,全部完成,它现在应该对您有用!

享受您的邮件!

答案 10 :(得分:0)

2020年更新

简化的解决方案: 如果您使用的是Gmail,则可以设置应用程序专用密码。

  1. 登录您的Gmail帐户
  2. 在右上角选择图标(圆圈图标)
  3. 点击管理您的Google帐户
  4. 在左侧菜单中选择安全
  5. 在登录Google时,点击应用密码
  6. 选择应用:邮件
  7. 选择设备:您选择的设备,我的是Windows
  8. auth_password
  9. 之后将自动生成的密码复制到您的 sendmail.ini 文件中。
  10. 保存,重新启动XAMPP,希望您一切顺利

此解决方案对我有用,但是当然,可能会有其他错误阻止您在此成功,例如更新xampp / sendmail文件夹中的文件,正确的端口设置等。

答案 11 :(得分:0)

第 1 步:转到您的 sendmai.ini

A.设置您的 smtpserver 名称。因为我使用 gmail 所以对我来说它是“smtp.gmail.com”

smtp_server=smtp.gmail.com

B.设置您的 SMTP 端口号。对于 Gmail,您可以使用“465”

smtp_port=465 
smtp_ssl=ssl

C.最重要的部分是现在。设置密码。您必须生成应用密码才能从服务器发送电子邮件。为此,请按照链接中的步骤操作。 *** 不要使用您的 gmail 登录密码。不起作用。您必须生成应用密码。如果您启用了两步验证,请按照以下步骤生成应用密码,否则只需使用您的 Gmail 密码。 https://devanswers.co/create-application-specific-password-gmail/

auth_username=hossain.9090@gmail.com
auth_password=wqutwfuevmssmgko
<块引用>

wqutwfuevmssmgko 是我安全生成的密码。

第 2 步:转到 php.ini

A.相应地为 SMTP 和 smtp_port 设置值。保存,不要忘记重启apache。

SMTP=localhost
smtp_port=465