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:
module.exports = ({ env }) => ({
...
email: {
config: {
provider: 'strapi-provider-email-resend',
providerOptions: {
apiKey: env('RESEND_API_KEY'), // Required
},
settings: {
defaultFrom: 'me@example.com',
defaultReplyTo: 'me@example.com',
},
}
},
});