假设我使用电子邮件提供商 API 为 20 个人发送定制/不同的电子邮件。
但所有电子邮件都有完全相同的主题(例如“Hello”
),并且无法更改。
这些电子邮件会发送给 20 个不同的人,同时也会作为密件抄送给我自己 ([email protected] ),以便我在收件箱中保留一份副本。
如何避免这 20 封电子邮件被分组在同一个线程中?
(注意:我不想禁用 Gmail 客户端的对话视图
)。
我的电子邮件提供商提供添加自定义电子邮件标头
。
在电子邮件中设置哪些标头,以便具有相同主题、相同发件人的电子邮件不会分组在 Gmail 客户端中的同一线程中?
链接主题:强制电子邮件不分组到对话。
Let's say I send customized/different emails for 20 persons with my email provider API.
But all emails have the exact same subject (let's say "Hello"
), and this cannot be changed.
These emails are sent to 20 different persons, but also as BCC to myself ([email protected]) so that I keep a copy in my inbox.
How to avoid these 20 emails to be grouped in the same thread?
(Note: I don't want to disable Conversation view
for the Gmail client).
My email provider offers to add custom email Headers
.
Which headers to set in an email so that emails with same topic, same sender, are not grouped in the same thread in the Gmail client?
Linked topic: Force emails not to be grouped into conversations.
发布评论
评论(1)
我在 https://workspaceupdates 中找到了解决方案.googleblog.com/2019/03/threading-changes-in-gmail-conversation-view.html。
设置表单的标题
References: [电子邮件受保护]>
,为每封电子邮件提供唯一的 UUID 足以解决此问题。I found the solution in https://workspaceupdates.googleblog.com/2019/03/threading-changes-in-gmail-conversation-view.html.
Setting a header of the form
References: <[email protected]>
, with a unique UUID for each email is enough to solve this.