mirror of
https://github.com/Nezumi-2711/strapi-cloud-template-blog-acf3cc33ae.git
synced 2026-09-22 20:02:05 +00:00
15 lines
282 B
JavaScript
15 lines
282 B
JavaScript
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',
|
|
},
|
|
},
|
|
},
|
|
});
|