I\'m using phpmailer on my website and to help with spam issues I have created a mailbox to send these emails from (using SMTP).
I have set the emails to come
At least in the current versions of PHPMailers, there's a function clearReplyTos() to empty the reply-to array.
$mail->ClearReplyTos(); $mail->addReplyTo(example@example.com, 'EXAMPLE');