0

我正在使用以下 google php 库来验证电子邮件地址。这是链接:

图书馆:

谷歌图书馆

示例文件:

例子

此代码在本地服务器上运行良好,但在客户端服务器上未验证。在我客户的服务器上,它给出了以下错误:

550-Please turn on SMTP Authentication in your mail client, or login to the
550-IMAP/POP3 server before sending your message.  ns500.mycyberhosting.com
550-(bebazar.be) [149.5.18.169]:53930 is not permitted to relay through this
550 server without authentication.

如果这是 SMTP 身份验证的问题,请告诉我如何在客户端服务器上启用 SMTP 身份验证。

提前致谢

4

1 回答 1

0

我认为使用 php PHPMailer进行 SMTP 电子邮件集成的更好选择,您可以使用您的电子邮件设置,甚至使用 GMail 向您的客户发送电子邮件,并且无需了解您的域或服务器配置即可轻松配置。在 PHPmaile 中,您可以为经过身份验证的邮件提供身份验证,并且您可以通过启用调试模式来调试电子邮件的每个状态

于 2014-05-30T04:01:48.077 回答