0

When providing the same subject line doesn't work?

I'd like to send 2 emails and make them appear in one conversation. Sadly, the second one always starts a new conversation. How to avoid this?

Both mails are sent directly to my.address@gmail.com

Both have almost the same headers and the same UTF-8 encoded subjects:

Delivered-To: my.account@gmail.com
Received: by ...
Return-Path: ...
Received: ...
Received-SPF: pass ...
Authentication-Results: mx.google.com; spf=pass ...
Received: from mm_www by ...
To: my.account@gmail.com
Subject: =?UTF-8?...=?=
From: notification@my.domain
Content-Type: text/plain; charset=UTF-8; format=flowed
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-Mailer: PHP
Message-Id: ... (Different for both messages. Should I add my own id?)
Date: ...

Any clues?

Universal Electricity
  • 775
  • 1
  • 12
  • 26
mati
  • 129
  • 1
  • 6

1 Answers1

1

Yes, the message ID is what's important here. The client uses it to determine flow.

Serafina Brocious
  • 30,433
  • 12
  • 89
  • 114
  • No, Message-ID doesn't have anything to do with it, except when you make the second message you should put the first one's Message-ID in the "In-Reply-To" header. – Paul Tomblin Jan 29 '09 at 15:44
  • My mistake, I read a quick summary of a document and got the wrong impression. This should be unaccepted. – Serafina Brocious Jan 29 '09 at 16:13
  • 2
    @CodyBrocious You may want to update your answer. Probably not everyone reads the comments :P – exhuma May 06 '14 at 11:15