I am using phpmailer for sending emails, I am attempting to add In-Reply-To
in email header but I can't. How can I achieve this? Can I use any message-ID
or references when I am sending a email? Is there anything else to add references
or In-Reply-To
in phpmailer?
So far I have tried to add below line in phpmailer
$mail->AddCustomHeader("In-Reply-To: ")
but it's not working. I also tried to change the return path code like
$mail->ReturnPath = 'bounce_here@domain.com';
but it did not change the return path as well.
And one more things, Can I get the message id
by using imap
php?