A email provider for for Resend [https://resend.com/]
A email provider for Strapi for Resend https://resend.com/
In the root directory of your project, run:
npm i strapi-provider-email-resend
In your config/plugins.js
, set the following:
1module.exports = ({ env }) => ({
2 ...
3 email: {
4 config: {
5 provider: 'strapi-provider-email-resend',
6 providerOptions: {
7 apiKey: env('RESEND_API_KEY'), // Required
8 },
9 settings: {
10 defaultFrom: 'me@example.com',
11 defaultReplyTo: 'me@example.com',
12 },
13 }
14 },
15});
npm install strapi-provider-email-resend
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.