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
- Host: GitHub
- URL: https://github.com/its-devtastic/provider-email-scaleway-tem
- Owner: its-devtastic
- License: mit
- Created: 2023-04-07T20:30:22.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-29T14:30:38.000Z (over 1 year ago)
- Last Synced: 2025-09-21T03:41:53.792Z (9 months ago)
- Topics: email, scaleway, strapi
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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',
},
},
},
// ...
});
```