0

我想我现在尝试在 3 天内解决此问题,但似乎无法找到问题所在。

我使用 XAMPP 并使用以下代码:

<?php

$to = "carl.j.97@live.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "carl.j.97@live.com";
$headers = "From: $from";
$res= mail($to,$subject,$message,$headers);
echo " $res Mail Sent.";
?>

当我进入该页面时,我收到一条错误消息:

Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set(

我在 xampp 中的 php.init 文件如下:

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

这就是我所有的代码。

4

3 回答 3

0

在您的生产服务器中运行此脚本。除非您在本地安装 SMTP 服务器,否则您无法从 localhost 发送电子邮件。

于 2013-06-30T16:22:28.627 回答
0

如果您在 XAMPP 或在 localhost 上运行的其他程序上运行此程序,请在 Google 上搜索使电子邮件服务正常工作所需的设置。您需要编辑一些文件并更改一些端口/客户端名称。

编辑:您只需修改 2 个 ini 文件:php.ini 和 sendmail.ini

1)在php.ini中查找邮件功能(c:/xampp/php/php.ini)>>[邮件功能]

更改以下内容::

SMTP=smtp.gmail.com

smtp_port=587


sendmail_from = from@gmail.com

sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"

注意:确保您为 sendmail_oath 指定的路径有效。在我的情况下,它在 C 中。保存您的更改。

2)接下来修改sendmail.ini(c:/xampp/sendmail/sendmail.ini) 注释掉merge如下图

# Mercury
#account Mercury
#host localhost
#from postmaster@localhost
#auth off

# A freemail service example
#account Hotmail
#tls on
#tls_certcheck off
#host smtp.live.com
#from [exampleuser]@hotmail.com
#auth on
#user [exampleuser]@hotmail.com
#password [examplepassword]

然后粘贴以下行:

account Gmail
tls on
tls_certcheck off
host smtp.gmail.com
from x@gmail.com
auth on
user x@gmail.com
password x

port 587

# Set a default account
account default : Gmail

再次保存您的更改。

使用下面的代码来测试它是否有效!

<?php
$subject="Test mail";
$to="someone@whatever.com";
$body="This is a test mail";
if (mail($to,$subject,$body))
echo "Mail sent successfully!";
else
echo"Mail not sent!";
?>

注意在上述配置中,发件人应使用 gmail 电子邮件服务,对于收件人,任何电子邮件服务都可以。

于 2013-06-30T16:31:29.233 回答
0
  1. 你确定你编辑了正确的 php.ini 文件吗?

  2. 编辑 php.ini 后是否重新启动了 Apache 服务器?

于 2013-06-30T16:33:20.497 回答