Scaleway Transactional Email
Provider for Scaleway Transactional Email (TEM)
Scaleway email provider for Strapi
An email provider for Strapi for Scaleway Transactional Email.
Note This plugin requires Node v18+
Installation
1npm i strapi-provider-email-scaleway-tem
Config
./config/plugins.js
1module.exports = ({ env }) => ({
2 // ...
3 email: {
4 config: {
5 provider: 'strapi-provider-email-scaleway-tem',
6 providerOptions: {
7 accessKey: env('SCW_ACCESS_KEY'),
8 secretKey: env('SCW_SECRET_KEY'),
9 projectId: env('SCW_PROJECT_ID'),
10 region: env('SCW_REGION'), // Defaults to 'fr-par'
11 },
12 settings: {
13 defaultFrom: 'strapi@example.com',
14 },
15 },
16 },
17 // ...
18});
Install now
npm install strapi-provider-email-scaleway-tem
Create your own plugin
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.