Merge branch 'master' of https://github.com/PHPMailer/PHPMailer
This commit is contained in:
commit
cb4e2ae675
|
|
@ -56,6 +56,7 @@ jobs:
|
|||
- php: 7.1
|
||||
env: CODE_COVERAGE=1
|
||||
- php: 7.2
|
||||
- php: 7.3
|
||||
- php: nightly
|
||||
- php: hhvm
|
||||
dist: trusty
|
||||
|
|
|
|||
|
|
@ -33,9 +33,9 @@ $mail->DKIM_passphrase = '';
|
|||
//The identity you're signing as - usually your From address
|
||||
$mail->DKIM_identity = $mail->From;
|
||||
//Suppress listing signed header fields in signature, defaults to true for debugging purpose
|
||||
$this->mailer->DKIM_copyHeaderFields = false;
|
||||
$mail->DKIM_copyHeaderFields = false;
|
||||
//Optionally you can add extra headers for signing to meet special requirements
|
||||
$this->mailer->DKIM_extraHeaders = ['List-Unsubscribe', 'List-Help'];
|
||||
$mail->DKIM_extraHeaders = ['List-Unsubscribe', 'List-Help'];
|
||||
|
||||
//When you send, the DKIM settings will be used to sign the message
|
||||
if (!$mail->send()) {
|
||||
|
|
|
|||
|
|
@ -24,4 +24,4 @@ $PHPMAILER_LANG['signing'] = 'Помилка підпису: ';
|
|||
$PHPMAILER_LANG['smtp_connect_failed'] = 'Помилка з\'єднання із SMTP-сервером';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'Помилка SMTP-сервера: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Неможливо встановити або перевстановити змінну: ';
|
||||
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Не знайдено розширення: ';
|
||||
|
|
|
|||
Loading…
Reference in New Issue