首页 > 解决方案 > Strapi 发送邮件不工作。你能帮我吗?

问题描述

我正在尝试使用有此错误的strapi插件发送邮件!

await strapi
  .plugins['email']
  .services
  .email
  .send({
    to: 'hqkhanh@gmail.com',
    from: 'khanh@gmail.com',
    subject: 'hello',
    text: 'hello',
  });

在此处输入图像描述

标签: javascriptnode.jsstrapi

解决方案


你换过供应商吗?确保您已经安装了strapi-provider-email-sendgridstrapi-provider-email-nodemailer(对于最新的Strapi 版本)

在您的管理面板 > 插件 > 电子邮件 ⚙️ 下,相应地更改您的提供商。

在此处输入图像描述


推荐阅读