我正在使用corephp,我使用hostgator webmail发送电子邮件。电子邮件成功发送到邮件发送者等邮件提供商,但它不会使用gmail,outlook和公司电子邮件ID。它也不是垃圾邮件/垃圾邮件。没有记录错误消息,并且在发送电子邮件时不会产生任何异常。
我没有得到可能的原因?
这是我的实际代码。
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isMail(); // Set mailer to use SMTP
$mail->Host = 'http://********/webmail'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'username'; // SMTP username
$mail->Password = 'password'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
$mail->From = 'from@example.co';
$mail->FromName = 'Mailer';
$mail->addAddress('To@mailinator.com', 'ToUser'); // Add a recipient
$mail->addAddress('To@mailinator.com'); // Name is optional
$mail->addReplyTo('To@mailinator.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');
$mail->WordWrap = 50; // Set word wrap to 50 characters
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
答案 0 :(得分:1)
从您的编码中删除此行
$mail->addAddress('To@mailinator.com');
您可以使用Gmail帐户进行测试,您将在垃圾邮箱中收到邮件。您可以将该邮件报告为垃圾邮件,然后您将收到有关Outlook的邮件。
E.g:
$mail->addAddress('Toemailname@gmail.com', 'ToUser');