如何使用 Sendgrid / MEAN Stack 发送放弃购物车电子邮件

How to Send Abandon Cart Email with Sendgrid / MEAN Stack

我已经实现了一个 MEAN 堆栈应用程序并添加了 Sendgrid。我希望根据用户状态发送 emails/abandon 购物车电子邮件。

示例:

If a user is going through a flow and abandons on page 2, send them a reminder email to complete the application;

我也研究过使用 Events Webhook and also creating a Unique Argument 发送事件,但我不确定这些选项是否正确。

我可以通过使用 Sengrid Contacts API

来实现这一点

先决条件:

  1. 在 Sendgrid 中创建自定义字段 Sengrid Custom Fields for Email Marketing

  2. 我的应用程序正在使用此 Sendgrid Client npm package, Sengrid V3 API/v3/contactdb/recipients 端点

我的自定义字段跟踪用户在申请过程中所处的步骤,所以我的自定义字段名称是"progress_application_step"

如果用户处于应用程序的第 2 步,请使用当前步骤更新他们的联系信息

const client = require('@sendgrid/client');
client.setApiKey(SENDGRID_API_KEY);
const request = {
  method: 'PATCH',
  url: '/v3/contactdb/recipients'
};

request.data = 
[
 {
   "email": "emailforuser@mail.xxx",
   "progress_application_step": "2"
 }
];

client.request(request)
.then(([response, body]) => {
  console.log(response.statusCode);
  console.log(body);
})

这项工作仍在进行中,但我能够通过发送行为电子邮件实现我想要的效果。您可以阅读有关联系人 API 收件人 here 的更多信息。如果有人找到发送用户行为电子邮件的更好解决方案,请告诉我!