When writing an application that sends email based on certain events, I would like to enforce the rule that each of these emails starts a new "conversation".
Email systems such as Gmail like group email messages into "conversations", such that messages A is presumed to be a reply to message B. There's lots of methods they use to determine what message you're replying to, such as the Subject: header or the In-Reply-To: header.
However, since automated emails tend to sometimes reuse subject lines (e.g. "Monitoring failure on server foo.bar.com"), often the mail service will assume that a given email is actually a reply to a previous message with the same subject line, even though the two are unrelated. This can lead to confusion and clients potentially missing an important notification.
Is it possible (and if so, then how) to signal in your mail headers that a given email is NOT a reply to any other, despite any potential similarities in the subject lines?
Since the email subject itself is visible to the client, I would prefer to avoid silliness like this: "Subject: Automated reminder for $task [".md5sum(date())."]"