在 php 中从我的域发送邮件
我正在尝试从我自己的域服务器发送邮件,例如 [email protected] 在 php.ini 中
我可以使用带有 pear 包的 gmail 帐户成功发送邮件。但是,从我自己的域发送消息失败。
任何想法......我应该如何从我自己的域发送消息。我收到类似这样的错误:
authentication failure [SMTP: SMTP server does not support authentication (
code: 250, response: EMU.dnsracks.com Hello [72.18.135.214] TURN SIZE 2097152
ETRN PIPELINING DSN ENHANCEDSTATUSCODES 8bitmime BINARYMIME CHUNKING VRFY OK)]
我的邮件地址是 [email protected]
任何帮助将不胜感激。
I'm trying to send a mail from my own domain server like [email protected] in php.
I can successfully send mail using gmail account with pear package. But, sending messages from my own domain fails.
any idea..... how I should send messages from my own domain. I'm getting errors like
authentication failure [SMTP: SMTP server does not support authentication (
code: 250, response: EMU.dnsracks.com Hello [72.18.135.214] TURN SIZE 2097152
ETRN PIPELINING DSN ENHANCEDSTATUSCODES 8bitmime BINARYMIME CHUNKING VRFY OK)]
My mail address is [email protected]
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要使用 smtp,只需使用 phpmailer 类即可。
http://www.askapache.com/php/phpfreaks-eric -rosebrocks-phpmailer-tutorial.html
非常易于使用,您将在几分钟内发送电子邮件!
you don't need to use smtp, just use the phpmailer class.
http://www.askapache.com/php/phpfreaks-eric-rosebrocks-phpmailer-tutorial.html
very easy to use and you'll be sending emails in minutes!