add resend plugin config

This commit is contained in:
2025-09-19 13:54:06 +07:00
parent c448c54207
commit b38493942a
3 changed files with 443 additions and 2 deletions
+14 -1
View File
@@ -1 +1,14 @@
module.exports = () => ({});
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',
},
},
},
});