如何使用 New Campaign API (Sendgrid C#) 将邮件发送到列表的一部分?
How to send mails to a segment of a list using New Campaign API (Sendgrid C#)?
有谁知道如何使用 Sendgrid New (V3) Campaign API 将邮件发送到联系人列表的一部分?
该指南仅包含 旧版 营销活动,不适用于最新的 SendGrid (v3)。
https://docs.sendgrid.com/api-reference/campaigns-api/create-a-campaign
我是否改用单次发送(V3 没有活动 API)?
https://docs.sendgrid.com/api-reference/single-sends/create-single-send
更新: 我尝试创建单发发送电子邮件:
https://docs.sendgrid.com/api-reference/single-sends/create-single-send
但它总是创建一个出现在我的 sendgrid 仪表板中的草稿,而不是实际发送出去。然后我尝试了 Schedule SingleSend https://docs.sendgrid.com/api-reference/single-sends/schedule-single-send
现在可以了。所以总而言之,我需要创建 SingleSend,然后使用日期时间安排单发(从其 ID)。
此处为 Twilio SendGrid 开发人员布道师。
Single-sends 相当于传统营销活动的活动 API。您可以 send a mail to a segment with a single-send 使用以下 JSON 数据结构:
{
"name": "Single send name",
"send_to": {
"segment_ids": ["ENTER_SEGMENT_ID_HERE"]
}
}
有谁知道如何使用 Sendgrid New (V3) Campaign API 将邮件发送到联系人列表的一部分?
该指南仅包含 旧版 营销活动,不适用于最新的 SendGrid (v3)。
https://docs.sendgrid.com/api-reference/campaigns-api/create-a-campaign
我是否改用单次发送(V3 没有活动 API)? https://docs.sendgrid.com/api-reference/single-sends/create-single-send
更新: 我尝试创建单发发送电子邮件: https://docs.sendgrid.com/api-reference/single-sends/create-single-send
但它总是创建一个出现在我的 sendgrid 仪表板中的草稿,而不是实际发送出去。然后我尝试了 Schedule SingleSend https://docs.sendgrid.com/api-reference/single-sends/schedule-single-send
现在可以了。所以总而言之,我需要创建 SingleSend,然后使用日期时间安排单发(从其 ID)。
此处为 Twilio SendGrid 开发人员布道师。
Single-sends 相当于传统营销活动的活动 API。您可以 send a mail to a segment with a single-send 使用以下 JSON 数据结构:
{
"name": "Single send name",
"send_to": {
"segment_ids": ["ENTER_SEGMENT_ID_HERE"]
}
}