为什么 Drupal 认为我的电子邮件地址无效?
我正在尝试从我正在编写的模块发送电子邮件,但我不断收到此错误消息,即使我在对 drupal_mail():
警告:mail() [function.mail]: SMTP 服务器响应:550 地址在 DefaultMailSystem->mail() 中无效(C:\Program Files (x86)\wamp\www\drupal 的第 77 行-7.0\modules\system\system.mail.inc)。
我该如何解决这个问题?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这与 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.
将您自己的 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 ;) )