gpt4 book ai didi

mandrill - 使用 Mandrill 为批量电子邮件设置 Message-Id

转载 作者:行者123 更新时间:2023-12-04 20:38:42 26 4
gpt4 key购买 nike

我正在使用 Mandrill 根据模板向联系人列表发送电子邮件。我想跟踪联系人是否回复了我的电子邮件,为此,我想检查 Message-Id我发送的电子邮件出现在 In-Reply-To 中新消息的头字段。

问题是我必须生成和设置 Message-Id手动,因为 Mandrill 只给我他们的内部 _id .但是,由于我同时向多个联系人发送电子邮件,因此我设置了 preserve_recipientsfalse .但是我只能设置一个 Message-Id ,因此将变得不是全局唯一的。

这是我发送的示例 JSON:

{
"from_email": "itsme@email.com",
"from_name": "Its Me",
"headers": {"Message-Id": ["<20150528161426.4265.93582@email.com>"]},
"subject": "Thesubject",
"text": "Thebody",
"to": [
{
"email": "john@email.com",
"name": "John",
"type": "to"
},
{
"email": "patrick@email.com",
"name": "Patrick",
"type": "to"
}
],
"preserve_recipients": false

}

在这种情况下,将发送两条消息,但它们具有相同的 Message-Id .如果我不设置它,Mandrill 会自动分配一个,但是我无法检索它。

知道我能做什么吗?也许我的整个方法是不正确的......

最佳答案

我最终遍历了所有收件人并生成了一个新的 Message-Id在每次迭代中一次发送一封电子邮件。可能不是最佳选择,因为我没有使用 Mandrill 批量功能,但至少现在我可以存储电子邮件 ID。

import email
import mandrill

mandrill_client = mandrill.Mandrill('YOUR_MANDRILL_KEY')

for recipient in recipients:
# Generate RFC 2822-compliant Message-ID header
message_id = email.Utils.make_msgid()
m = {
"headers": {"Message-Id": [message_id],
"from_email": "itsme@email.com",
"from_name": "Its Me",
"subject": "The subject",
"text": "The body",
"to": [{"email": recipient["email"],
"name": recipient["name"],
"type": "to"}],
"track_clicks": True,
"track_opens": True
}
result = mandrill_client.messages.send(message=m)

关于mandrill - 使用 Mandrill 为批量电子邮件设置 Message-Id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30512212/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com