无法发送电子邮件从godaddy服务器到godaddy或zoho邮件
问题描述:
我想从我的网站发送电子邮件到我的godaddy邮件和zoho邮件,但它不工作。 我在我的gmail帐户上试过了,它的工作正常。 我正在使用phpmailer。 我的代码 -无法发送电子邮件从godaddy服务器到godaddy或zoho邮件
require_once "PHPMailerAutoload.php";
//PHPMailer Object
$mail = new PHPMailer;
//From email address and name
$mail->From = "[email protected]";
$mail->FromName = "Himanshu Mishra";
$mail->addAddress("my godaddy webmail"); //Recipient name is optional
//Send HTML or Plain Text email
$mail->isHTML(true);
$mail->Subject = "Subject Text";
$mail->Body = "<i>Mail body in HTML</i>";
$mail->AltBody = "This is the plain text version of the email content";
if(!$mail->send())
{
echo "Mailer Error: " . $mail->ErrorInfo;
}
else
{
echo "Message has been sent successfully";
}
请帮助!!!!!
答
你From
语法是错误的而不是
$mail->From = "[email protected]";
$mail->FromName = "Himanshu Mishra";
应该
$mail->setFrom('[email protected]', 'Himanshu Mishra');
您可以发布完整的代码?看起来这不是完整的代码。 Zoho&godaddy对于phpmailer有不同的设置,你想使用什么? –