An email provider for Strapi for Scaleway Transactional Email.
Note This plugin requires Node v18+
npm i strapi-provider-email-scaleway-tem
./config/plugins.js
module.exports = ({ env }) => ({
// ...
email: {
config: {
provider: 'strapi-provider-email-scaleway-tem',
providerOptions: {
accessKey: env('SCW_ACCESS_KEY'),
secretKey: env('SCW_SECRET_KEY'),
projectId: env('SCW_PROJECT_ID'),
region: env('SCW_REGION'), // Defaults to 'fr-par'
},
settings: {
defaultFrom: '[email protected]',
},
},
},
// ...
});