为什么 Drupal 认为我的电子邮件地址无效?

发布于 2024-11-06 10:37:29 字数 431 浏览 0 评论 0 原文

我正在尝试从我正在编写的模块发送电子邮件,但我不断收到此错误消息,即使我在对 drupal_mail()

警告:mail() [function.mail]: SMTP 服务器响应:550 地址在 DefaultMailSystem->mail() 中无效(C:\Program Files (x86)\wamp\www\drupal 的第 77 行-7.0\modules\system\system.mail.inc)。

我该如何解决这个问题?

I'm trying to send an e-mail from a module I'm writing, but I keep getting this error message, even when I hardcode a valid address in the call to drupal_mail():

Warning: mail() [function.mail]: SMTP server response: 550 The address is not valid in DefaultMailSystem->mail() (line 77 of C:\Program Files (x86)\wamp\www\drupal-7.0\modules\system\system.mail.inc).

How do I fix this?

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

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

发布评论

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

评论(2

青萝楚歌 2024-11-13 10:37:29

这与 Drupal 无关,而是与 C:\Program Files (x86)\wamp\ 中 php.ini 文件中的 SMTP(简单邮件传输协议)配置有关(我不知道确切位置,因为我使用 xampp)。
在那里你必须寻找“邮件功能”,你可以在其中放置
SMTP = smtp.server 其中服务器是您的互联网提供商提供的服务器的名称。
就我个人而言,我不会对此进行任何更改,因为一旦上线,一切都会正常工作。

This has nothing to do with Drupal but with the SMTP (simple mail transfer protocol) configuration in php.ini file somewhere in C:\Program Files (x86)\wamp\ (I don't know exactly where because I use xampp).
There you have to look for 'mail function' where you can put
SMTP = smtp.server where server is the name of the server from your internet provider.
Personnaly I don't change a thing to this because everything will work once going live.

吃颗糖壮壮胆 2024-11-13 10:37:29

将您自己的 smtp 服务器与 SMTP 模块 结合使用怎么样? Gmail 允许您使用他们的 SMTP 服务器,这将为您节省设置本地 SMTP 的复杂性(尤其是在 Windows 上;))

What about using your own smtp server with the SMTP module ? Gmail allows you to use their SMTP server and it will save you the complexity of setting up a local SMTP (especially on Windows ;) )

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