I can’t understand how to get the mail application (except for Google mail) to find out that the message was sent as “Answer to a question” and these emails are grouped together as one list of sent and sent messages.
For example using php if I use
$header = "From: Testing < email@mail.com >\r\n" . "Reply-To: email@mail.com \r\n" . "X-Mailer: PHP/" . phpversion(); $to = " email@mail.com "; $message = "This is a reply"; $subject = "test 123"; $success = mail($to, $subject, $message, $header);
And send it twice, I get two separate letters. Instead of one letter consisting of two letters.
Is there a way to combine them together, as one email responds to another, or am I doing something wrong?
I read the php mail () documentation and some web pages explaining how php mail works, and still cannot get emails to respond to each other.
Thanks for your time and help!
source share