SMTP 和 PHP 问题

发布于 2024-10-17 02:59:22 字数 230 浏览 0 评论 0原文

我已经为 Windows 64 位设置了 WAMP,并尝试使用 mail() 函数 将电子邮件从我的本地主机发送到另一个邮件服务器(例如 Gmail 或 Hotmail)。

问题出在 PHP 和 SMTP 连接上。我收到以下错误消息:

验证您的 smtp 和端口 25。

谁能告诉我导致此错误的原因以及如何修复它?

I have setup WAMP for Windows 64-bit and am trying to use the mail() function
to send an email from my local host to another mail server (for example, Gmail or Hotmail).

The problem is in PHP and SMTP connection. I get the following error message:

Verify your smtp and port 25.

Can anyone tell me what is causing this error and how I can fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网白 2024-10-24 02:59:22

当使用 mail() 时,PHP 期望找到在本地主机上运行的邮件服务器。你可能没有那个。您可以尝试使用 PHPMailer 代替。

配置将如下所示:

<?php
 require("class.phpmailer.php");

 $mail = new PHPMailer();

 $mail->IsSMTP();
 $mail->SMTPAuth = true;
 $mail->Host = 'smtp.example.com';
 $mail->Username = 'user';
 $mail->Password = 'pass';

 $mail->From = '[email protected]';
 $mail->FromName = "John Doe";
 $mail->AddAddress('[email protected]');

 $mail->Subject = 'test subject';
 $mail->Body = 'Works?';

 $mail->Send()
?> 

When using mail(), PHP expects to find a mailserver running on localhost. You probably don't have that. You can try using PHPMailer instead.

The configuration would then look something like this:

<?php
 require("class.phpmailer.php");

 $mail = new PHPMailer();

 $mail->IsSMTP();
 $mail->SMTPAuth = true;
 $mail->Host = 'smtp.example.com';
 $mail->Username = 'user';
 $mail->Password = 'pass';

 $mail->From = '[email protected]';
 $mail->FromName = "John Doe";
 $mail->AddAddress('[email protected]');

 $mail->Subject = 'test subject';
 $mail->Body = 'Works?';

 $mail->Send()
?> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文