I create a mail client that uses a unique identifier to identify (duh) the conversation and thereby create a stream. This unique identifier is now bound to the subject line. Without an identifier in the subject line, mail becomes "lost."
Besides the fact that it closes the topic, it would be much more convenient if I could add the identifier to the custom header as follows:
$to = ' nobody@example.com '; $subject = 'the subject'; $message = 'hello'; $headers = 'From: Webmaster < webmaster@example.com >' . "\r\n" . 'Reply-To: webmaster@example.com ' . "\r\n" . 'X-myID: MghT3s' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers);
Is it possible? And will mail get a higher spam score by doing this?
// edit Responding to sending emails using a custom header, the header is not transmitted, so this is really not a solution.
// edit2 I am viewing the in-reply-to header. But I don’t know if it is used by all email clients.
source share