Skip to content

Commit

Permalink
Fix email advanced guide for cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
pwizla committed Oct 4, 2023
1 parent a868544 commit 09f272b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
26 changes: 19 additions & 7 deletions docusaurus/docs/cloud/advanced/email.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ canonicalUrl: https://docs.strapi.io/cloud/advanced/email.html

# Email Provider

Strapi Cloud comes with a basic email provider out of the box. However, you can also configure it to utilize a third-party email provider, if needed.
Strapi Cloud comes with a basic email provider out of the box. However, it can also be configured to utilize a third-party email provider, if needed.

:::caution
Please be advised that Strapi are unable to provide support for third-party email providers.
Expand Down Expand Up @@ -43,9 +43,15 @@ In your Strapi project, create a `./config/env/production/plugins.js` or `./conf
```js title=./config/env/production/plugins.js

module.exports = ({ env }) => ({
// ...
Required Email Provider Plugin Configuration
// ...
// … some unrelated plugins configuration options
// highlight-start
email: {
config: {
// … provider-specific upload configuration options go here
}
// highlight-end
// … some other unrelated plugins configuration options
}
});
```

Expand All @@ -55,9 +61,15 @@ module.exports = ({ env }) => ({
```ts title=./config/env/production/plugins.ts

export default ({ env }) => ({
// ...
Required Email Provider Plugin Configuration
// ...
// … some unrelated plugins configuration options
// highlight-start
email: {
config: {
// … provider-specific upload configuration options go here
}
// highlight-end
// … some other unrelated plugins configuration options
}
});
```

Expand Down
2 changes: 1 addition & 1 deletion docusaurus/docs/cloud/advanced/upload.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Please be advised that Strapi are unable to provide support for third-party uplo

## Configuration

Configuring a third-party upload provider for use with Strapi Cloud requires four steps:
Configuring a third-party upload provider for use with Strapi Cloud requires 4 steps:

1. Install the provider plugin in your local Strapi project.
2. Configure the provider in your local Strapi project.
Expand Down

1 comment on commit 09f272b

@vercel
Copy link

@vercel vercel bot commented on 09f272b Oct 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

documentation – ./

docs-vercel-v4.strapi.io
documentation-git-main-strapijs.vercel.app
documentation-strapijs.vercel.app

Please sign in to comment.