Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keeping Email Message from Grouping into Conversation View in Gmail

Tags:

smtp

gmail

I'm working on a feature for a client to send them email updates whenever a specific event occurs on their site. When the message shows up in Gmail, the messages get grouped together in conversation view even through they aren't the same conversation. It appears that this is due to the fact that Gmail groups based only on the subject. The client is adamant that we not change the subject line (don't get me started).

Does anyone know how I can disable this by sending a special header in the mail or am I out of luck?

like image 810
Scott Keck-Warren Avatar asked Apr 22 '13 14:04

Scott Keck-Warren


People also ask

Can you change the Gmail conversation view?

Change conversation settings for your Google accountOpen the Gmail app . Settings. Tap your account address. Check or uncheck Conversation view.

Why is Gmail conversation view so confusing?

When users reply to the same email the conversation turns into a thread mail. This often creates a sense of confusion that is created owing to it being a threaded conversation. With the latest update, you can choose to see such replies as individual mails. Open the settings menu on your Gmail app.

How do I stop email threads?

Android: In Gmail, select three-dot icon and go to Settings > General settings. Tick Conversation View to group emails with the same topic. Windows: Go to Mail > Settings > Options. Toggle Show messages arranged by conversations to turn threading on or off.


1 Answers

There appears to be no way to prevent this, short of turning off conversation view (have you considered that?).

My guess is that Gmail is actually threading based on its own Thread-Topic header field, which it adds (overwriting any value you pass; it just copies the Subject field) - there's no way of telling, though, unless you can change that field after the fact. Which leads to the suggestion of writing an IMAP application to download the message, edit the headers, and re-upload it again. You'd need to investigate the feasibility of this, though.

like image 96
Geoff Avatar answered Sep 19 '22 15:09

Geoff