strapi-provider-email-resend-strapi
v1.0.0
Published
Strapi Resend provider for Strapi
Downloads
6
Readme
strapi-provider-email-resend
A email provider for Strapi for Resend [https://resend.com/]
Installation
In the root directory of your project, run:
npm i strapi-provider-email-resend-strapi
Configuration
In your config/plugins.js
, set the following:
module.exports = ({ env }) => ({
...
email: {
config: {
provider: 'strapi-provider-email-resend-strapi',
providerOptions: {
apiKey: env('RESEND_API_KEY'), // Required
},
settings: {
defaultFrom: '[email protected]', // env('RESEND_DEFAULT_FROM')
defaultReplyTo: '[email protected]', // env('RESEND_DEFAULT_FROM')
},
}
},
});