mirror of
https://github.com/strapi/strapi.git
synced 2025-11-02 10:55:37 +00:00
FIx Email Provider Readme. (#9947)
The Shipper Email in the email templates tab may need to be changed for emails to send properly Settings>Email Templates>Click on a template>Shipper Email api.us.mailgun.net is not a valid endpoint it should be api.mailgun.net see https://documentation.mailgun.com/en/latest/api-intro.html
This commit is contained in:
parent
4a8139a77d
commit
9f5454276d
@ -1 +1,2 @@
|
||||
# Strapi plugin
|
||||
# Strapi plugin
|
||||
> :warning: The Shipper Email may also need to be changed in the `Email Templates` tab on the admin panel for emails to send properly
|
||||
@ -34,6 +34,7 @@ npm install strapi-provider-email-amazon-ses --save
|
||||
| settings.defaultFrom | string | Default sender mail address | no | undefined |
|
||||
| settings.defaultReplyTo | string \| array<string> | Default address or addresses the receiver is asked to reply to | no | undefined |
|
||||
|
||||
> :warning: The Shipper Email (or defaultfrom) may also need to be changed in the `Email Templates` tab on the admin panel for emails to send properly
|
||||
### Example
|
||||
|
||||
**Path -** `config/plugins.js`
|
||||
|
||||
@ -34,6 +34,7 @@ npm install strapi-provider-email-mailgun --save
|
||||
| settings.defaultFrom | string | Default sender mail address | no | undefined |
|
||||
| settings.defaultReplyTo | string \| array<string> | Default address or addresses the receiver is asked to reply to | no | undefined |
|
||||
|
||||
> :warning: The Shipper Email (or defaultfrom) may also need to be changed in the `Email Templates` tab on the admin panel for emails to send properly
|
||||
### Example
|
||||
|
||||
**Path -** `config/plugins.js`
|
||||
@ -46,7 +47,7 @@ module.exports = ({ env }) => ({
|
||||
providerOptions: {
|
||||
apiKey: env('MAILGUN_API_KEY'),
|
||||
domain: env('MAILGUN_DOMAIN'), //Required if you have an account with multiple domains
|
||||
host: env('MAILGUN_HOST', 'api.us.mailgun.net'), //Optional. If domain region is Europe use 'api.eu.mailgun.net'
|
||||
host: env('MAILGUN_HOST', 'api.mailgun.net'), //Optional. If domain region is Europe use 'api.eu.mailgun.net'
|
||||
},
|
||||
settings: {
|
||||
defaultFrom: 'myemail@protonmail.com',
|
||||
|
||||
@ -105,6 +105,7 @@ module.exports = ({ env }) => ({
|
||||
```
|
||||
|
||||
## Usage
|
||||
> :warning: The Shipper Email (or defaultfrom) may also need to be changed in the `Email Templates` tab on the admin panel for emails to send properly
|
||||
|
||||
To send an email from anywhere inside Strapi:
|
||||
|
||||
|
||||
@ -35,6 +35,7 @@ npm install strapi-provider-email-sendgrid --save
|
||||
| settings.defaultFrom | string | Default sender mail address | no | undefined |
|
||||
| settings.defaultReplyTo | string \| array<string> | Default address or addresses the receiver is asked to reply to | no | undefined |
|
||||
|
||||
> :warning: The Shipper Email (or defaultfrom) may also need to be changed in the `Email Templates` tab on the admin panel for emails to send properly
|
||||
### Example
|
||||
|
||||
**Path -** `config/plugins.js`
|
||||
|
||||
@ -34,6 +34,7 @@ npm install strapi-provider-email-sendmail --save
|
||||
| settings.defaultFrom | string | Default sender mail address | no | undefined |
|
||||
| settings.defaultReplyTo | string \| array<string> | Default address or addresses the receiver is asked to reply to | no | undefined |
|
||||
|
||||
> :warning: The Shipper Email (or defaultfrom) may also need to be changed in the `Email Templates` tab on the admin panel for emails to send properly
|
||||
### Example
|
||||
|
||||
**Path -** `config/plugins.js`
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user