Send mail in phpmailer using DKIM Keys

前端 未结 2 639
粉色の甜心
粉色の甜心 2020-12-13 05:05

Currents i am using phpmailer to send mail\'s. now how its possible to send email in phpmailer with DKIM keys

i search in phpmailer Class file and i found the below

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-13 05:39

    If you take a look in the PHPMailer unit tests, there is an example of how to set up DKIM.

    Here are the basics beyond what you already need to do to send a message (obviously change the domain, key path and selector to match your config, and add a passphrase if you use one); this also assumes that you are intending to sign using the same identifier as your From address:

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

    When you send() the message (and not before), it will use these settings to generate a DKIM signature.

提交回复
热议问题