2.1.0 • Published 2 years ago
strapi-provider-email-scaleway-tem v2.1.0
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-temConfig
./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: 'strapi@example.com',
      },
    },
  },
  // ...
});