【问题标题】:PHP Sendmail Failed in windows xamppPHP Sendmail在Windows xampp中失败
【发布时间】:2015-04-16 10:27:15
【问题描述】:

我正在尝试通过我的 gmail 帐户在 Windows 中发送邮件,我已经配置了我的 php.ini :

SMTP=smtp.gmail.com
smtp_port=587
sendmail_from=jaisanas2@gmail.com
sendmail_path="\"C:\xampp\sendmail\sendmail.exe\" -t"

and sendmail.ini :
smtp_server=smtp.gmail.com
smtp_port=587
smtp_ssl=auto
error_logfile=error.log
auth_username=confidential@gmail.com
auth_password=my-password-confident
force_sender=confidential@gmail.com

这是我的代码:

<?php
// The message
$message = "Line 1\r\nLine 2\r\nLine 3";

// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70, "\r\n");

// Send
$send = mail('jaisanas2@gmail.com', 'My Subject', $message);
if ($send) {
    echo "send";
}
else {
echo "fail";}
?>

我也改变了我的谷歌安全变得不那么安全 我不知道为什么,有人帮帮我吗?

【问题讨论】:

  • 您没有转义 sendmail_path 中的反斜杠。这对我来说看起来不对。
  • 还是失败了,我改成sendmail_path="\"C:\\xampp\\sendmail\\sendmail.exe\" -t"
  • 我想知道本地服务器是否可以与在线服务器交互。对我来说是新的
  • 我不认识 Jean Gkol,但它看起来适合某些人stackoverflow.com/questions/15965376/…
  • 大多数情况下,您无法从本地服务器发送邮件,您需要将文件上传到实时服务器。

标签: php xampp sendmail sendmail.exe


【解决方案1】:

我不确定您是否使用的是 Windows 8,但如果您使用,则必须执行以下操作 -

1) 在 PHP.ini 中,使电子邮件部分看起来像这样

; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
SMTP = localhost
smtp_port = 465

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

; 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=on

2 ) 使 sendmail.ini smtp 部分看起来像这样

smtp_server=localhost

; smtp port (normally 25)

smtp_port=25

; 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=none

; if your smtp server requires authentication, modify the following two lines

auth_username=user@gmail.com
auth_password=password

3 ) 下载 Stunnel https://www.stunnel.org/downloads.html 并在 stunnel.conf 中进行以下更改。 Stunnel 正在托盘中运行,每次进行更改时,右键单击 Stunnel 图标并重新加载 conf 文件。

cert = stunnel.pem
socket = l:TCP_NODELAY=1
socket = r:TCP_NODELAY=1
key = stunnel.pem
[ssmtp]
accept  = 465
connect = 25
[gmail-smtp]
client = yes
accept = 127.0.0.1:25
connect = smtp.gmail.com:465
; To check logs you can enable logging using following lines
debug = 7

4 ) 转到您的 Sendmail 文件夹,右键单击 sendmail.exe -> 属性 -> 兼容性 -> 单击对所有用户进行更改按钮 -> 选择 Windows XP (Service Pack 3) 兼容性并勾选以管理员身份运行。

5 ) 始终以管理员身份启动 XAMPP!

这仅在 Windows 8+ 上需要(fex。在 Windows 2008 R2 上,我只需要正确地将 sendmail 指向 gmail 并且一切正常)。

【讨论】:

  • 选择 Windows XP (Service Pack 3) 是所有 sendmail 问题的正确答案!恭喜
【解决方案2】:

到 Windows8

改变后

1-php.ini

2-sendmail.ini

转到 C:\xampp\sendmail

  • 1) 右键单击​​ sendmail.exe 并转到属性。
  • 2) 单击兼容性选项卡,然后单击更改所有用户的设置。
  • 3) 将兼容模式设置为 Windows XP (Service Pack 3)
  • 4) 单击以管理员身份运行此程序的复选框

希望对其他人有所帮助。

它对我有用

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2013-02-04
    • 2013-10-21
    • 1970-01-01
    • 1970-01-01
    • 2010-09-16
    • 2013-03-15
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多