情况:
使用PHPMailer在php中编写一个函数,用于发送网站的帐户激活邮件。
问题:
我的所有邮件直接进入垃圾邮件文件夹而不是收件箱。只有gmail-adresses才能正确接收我的邮件。
我的代码:
<?php
/********************************************************************************************************************************
File: sendmail.php
Author: Burtscher Florian
Date: 02.02.2017
Description:
This file contains the sendmail functions for mailing noreply messages to EmailClients.
***************************************************************************************************************************/
require 'PHPMailer-master/PHPMailerAutoload.php';
$result = sendmail('asdf','asdf','asdf','asdf');
if(!$result){
echo $result;
}
function sendmail($to,$subject,$message,$name){
$mail = new PHPMailer;
//$mail->SMTPDebug = 3;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.world4you.com'; //'smtp1.example.com;smtp2.example.com'; // Specifay main and backup SMTP server
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'activation@scritex.com';
$mail->Password = '*************';
$mail->SMTPSecure = 'tls';
$mail->Port = 587; // TCP port to connect
$mail->setFrom('activation@scritex.com', 'Activation');
$mail->addAddress('mytestmail1111@dkimvalidator.com', 'Florian Burtscher'); // Add a recipient
$mail->addReplyTo('activation@scritex.com', 'Office'); // Add Reply To
$mail->isHTML(true);
$mail->Subject = 'Here is a 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';
$mail->DKIM_domain = 'scritex.com';
$mail->DKIM_private = '.htkeyprivate';
$mail->DKIM_selector = 'dkim11';
$mail->DKIM_passphrase = '1486107933';
if(!$mail->send()){
return $mail->ErrorInfo;
}else{
return true;
}
}
?>
结果:
我不知道该怎么做。 谁知道这个问题?
我的所有邮件都是通过hotmail,outlook,yahoo,gmx,aon,msn转到垃圾邮件!
答案 0 :(得分:0)
发件人服务域已列入黑名单。尝试使用另一个smtp服务。如果这没有帮助,您使用的域名(scritex.com)可能会被列入黑名单。从那里有两种可能的解决方案:1。将您的域列入白名单(有几种服务可以做到这一点,但这是一个漫长而烦人的过程)。 2.使用其他域名