The reply to addresses needed to be added before the from address:
$mail->addReplyTo('[email protected]', 'Reply to name');
$mail->setFrom('[email protected]', 'Mailbox name');
With this order all is OK.
addReplyTo not AddReplyTo
Alternative:
You can clear replyTo array before:
$mail->ClearReplyTos();
$mail->addReplyTo([email protected], 'EXAMPLE');
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…