An open API service indexing awesome lists of open source software.

https://github.com/its-devtastic/provider-email-scaleway-tem

Scaleway Transactional Email provider for Strapi email
https://github.com/its-devtastic/provider-email-scaleway-tem

email scaleway strapi

Last synced: 5 months ago
JSON representation

Scaleway Transactional Email provider for Strapi email

Awesome Lists containing this project

README

          

# Scaleway email provider for Strapi

An email provider for Strapi for [Scaleway Transactional Email](https://www.scaleway.com/en/betas/#tem-transactional-email).

> **Note**
> This plugin requires Node v18+

## Installation
```shell
npm i strapi-provider-email-scaleway-tem
```

## Config

`./config/plugins.js`

```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',
},
},
},
// ...
});
```