在 strapi 上创建新条目时自动发送电子邮件

automaticlly send E-mails when a new entry is created on strapi

假设我有一个名为 Order 的内容类型,其中包含以下字段:

Name Product E-mail

并且 public 有权 post 此类型的新条目。

当 public 提出新的 post 请求(新条目)时,我如何发送确认订单的电子邮件?

您可以在 entry.create 事件上使用 webhook 来完成,将其与一些工作人员或电子邮件集成 API。

在这个例子中,我们可以看到一个用于电子邮件发送的 cloudflare worker:

https://dev.to/gzuidhof/sending-e-mails-from-cloudflare-workers-2abl

这里是关于如何处理 webhook 的 Strapi 文档:

https://docs.strapi.io/developer-docs/latest/development/backend-customization/webhooks.html#entry-create