phpmailer没有放入标题DKIM信息

时间:2017-01-01 23:12:23

标签: php email phpmailer dkim

我正在努力将DKIM签名放入我创建的小crm发送的电子邮件中。 我已将公钥插入我的域的文本记录中,现在我正在努力在我发送电子邮件时将私钥放入phpmailer中。 我在课堂上使用了这个例子:

$mail->DKIM_domain = 'example.com';
$mail->DKIM_private = 'path/to/private.key';
$mail->DKIM_selector = 'phpmailer';
$mail->DKIM_passphrase = '';
$mail->DKIM_identity = $mail->From;

当我发送邮件时,gmail说我的dkim签名是PASS。如果我在check-auth@verifier.port25.com上测试发送邮件,我收到:

  

----------------------------------------------- ----------- DKIM检查详情:   -------------------------------------------------- --------结果:permerror(签名(sha256)ID中使用的哈希算法已验证:   不

1 个答案:

答案 0 :(得分:0)

您是否尝试https://www.port25.com/authentication-checker/并在测试时粘贴输出。

我也有类似的问题,这个答案对我有帮助 How to send email with Phpmailer with DKIM signature?

您也可以尝试