strapi-provider-email-scaleway-tem
v2.1.0
Published
Scaleway Transactional Email provider for Strapi email
Downloads
8
Maintainers
Readme
Scaleway email provider for Strapi
An email provider for Strapi for Scaleway Transactional Email.
Note This plugin requires Node v18+
Installation
npm i strapi-provider-email-scaleway-tem
Config
./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]',
},
},
},
// ...
});