Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 7 additions & 10 deletions packages/providers/email-amazon-ses/README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
# strapi-provider-email-amazon-ses
# @strapi/provider-email-amazon-ses

## Resources

- [License](LICENSE)
- [LICENSE](LICENSE)

## Links

- [Strapi website](https://strapi.io/)
- [Strapi community on Slack](https://slack.strapi.io)
- [Strapi documentation](https://docs.strapi.io)
- [Strapi community on Discord](https://discord.strapi.io)
- [Strapi news on Twitter](https://twitter.com/strapijs)

## Prerequisites

You need to have the plugin `strapi-plugin-email` installed in you Strapi project.

## Installation

```bash
# using yarn
yarn add strapi-provider-email-amazon-ses
yarn add @strapi/provider-email-amazon-ses

# using npm
npm install strapi-provider-email-amazon-ses --save
npm install @strapi/provider-email-amazon-ses --save
```

## Configuration
Expand All @@ -38,7 +35,7 @@ npm install strapi-provider-email-amazon-ses --save

### Example

**Path -** `config/plugins.js`
**Path -** `./config/plugins.js`

```js
module.exports = ({ env }) => ({
Expand Down
15 changes: 6 additions & 9 deletions packages/providers/email-mailgun/README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
# strapi-provider-email-mailgun
# @strapi/provider-email-mailgun

## Resources

- [License](LICENSE)
- [LICENSE](LICENSE)

## Links

- [Strapi website](https://strapi.io/)
- [Strapi community on Slack](https://slack.strapi.io)
- [Strapi documentation](https://docs.strapi.io)
- [Strapi community on Discord](https://discord.strapi.io)
- [Strapi news on Twitter](https://twitter.com/strapijs)

## Prerequisites

You need to have the plugin `strapi-plugin-email` installed in you Strapi project.

## Installation

```bash
# using yarn
yarn add strapi-provider-email-mailgun
yarn add @strapi/provider-email-mailgun

# using npm
npm install strapi-provider-email-mailgun --save
npm install @strapi/provider-email-mailgun --save
```

## Configuration
Expand Down
3 changes: 0 additions & 3 deletions packages/providers/email-mailgun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,5 @@
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"isProvider": true
}
}
16 changes: 16 additions & 0 deletions packages/providers/email-nodemailer/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
root = true
Copy link
Contributor

Choose a reason for hiding this comment

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

There is an .editorconfig file at the root of the project, it isn't enough?

Copy link
Member Author

Choose a reason for hiding this comment

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

All the other providers had it so I just mirrored the same

Copy link
Contributor

Choose a reason for hiding this comment

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

Ok, I'll make a PR to remove them all I think and check if @alexandrebodin has an objection. You can let this file and I'll remove it in my PR


[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[{package.json,*.yml}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false
96 changes: 96 additions & 0 deletions packages/providers/email-nodemailer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
############################
# OS X
############################

.DS_Store
.AppleDouble
.LSOverride
Icon
.Spotlight-V100
.Trashes
._*


############################
# Linux
############################

*~


############################
# Windows
############################

Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp


############################
# Packages
############################

*.7z
*.csv
*.dat
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
*.com
*.class
*.dll
*.exe
*.o
*.seed
*.so
*.swo
*.swp
*.swn
*.swm
*.out
*.pid


############################
# Logs and databases
############################

.tmp
*.log
*.sql
*.sqlite


############################
# Misc.
############################

*#
.idea
nbproject


############################
# Node.js
############################

lib-cov
lcov.info
pids
logs
results
build
node_modules
.node_history
package-lock.json

100 changes: 100 additions & 0 deletions packages/providers/email-nodemailer/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
############################
# OS X
############################

.DS_Store
.AppleDouble
.LSOverride
Icon
.Spotlight-V100
.Trashes
._*

############################
# Linux
############################

*~

############################
# Windows
############################

Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp

############################
# Packages
############################

*.7z
*.csv
*.dat
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
*.com
*.class
*.dll
*.exe
*.o
*.seed
*.so
*.swo
*.swp
*.swn
*.swm
*.out
*.pid

############################
# Logs and databases
############################

.tmp
*.log
*.sql
*.sqlite

############################
# Misc.
############################

*#
ssl
.editorconfig
.gitattributes
.idea
nbproject

############################
# Node.js
############################

lib-cov
lcov.info
pids
logs
results
build
node_modules
.node_history

############################
# Tests
############################

test
tests
__tests__
jest.config.js
15 changes: 6 additions & 9 deletions packages/providers/email-nodemailer/README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
# strapi-provider-email-nodemailer
# @strapi/provider-email-nodemailer

## Resources

- [License](LICENSE)
- [LICENSE](LICENSE)

## Links

- [Strapi website](https://strapi.io/)
- [Strapi community on Slack](https://slack.strapi.io)
- [Strapi documentation](https://docs.strapi.io)
- [Strapi community on Discord](https://discord.strapi.io)
- [Strapi news on Twitter](https://twitter.com/strapijs)

## Prerequisites

You need to have the plugin `strapi-plugin-email` installed in your Strapi project.

## Installation

```bash
# using yarn
yarn add strapi-provider-email-nodemailer
yarn add @strapi/provider-email-nodemailer

# using npm
npm install strapi-provider-email-nodemailer --save
npm install @strapi/provider-email-nodemailer --save
```

## Example
Expand Down
3 changes: 0 additions & 3 deletions packages/providers/email-nodemailer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,5 @@
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"isProvider": true
}
}
15 changes: 6 additions & 9 deletions packages/providers/email-sendgrid/README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
# strapi-provider-email-sendgrid
# @strapi/provider-email-sendgrid

## Resources

- [License](LICENSE)
- [LICENSE](LICENSE)

## Links

- [Strapi website](https://strapi.io/)
- [Strapi community on Slack](https://slack.strapi.io)
- [Strapi documentation](https://docs.strapi.io)
- [Strapi community on Discord](https://discord.strapi.io)
- [Strapi news on Twitter](https://twitter.com/strapijs)

## Prerequisites

You need to have the plugin `strapi-plugin-email` installed in you Strapi project.

## Installation

```bash
# using yarn
yarn add strapi-provider-email-sendgrid
yarn add @strapi/provider-email-sendgrid

# using npm
npm install strapi-provider-email-sendgrid --save
npm install @strapi/provider-email-sendgrid --save
```

## Configuration
Expand Down
3 changes: 0 additions & 3 deletions packages/providers/email-sendgrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,5 @@
"engines": {
"node": ">=12.x.x <=16.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"isProvider": true
}
}
Loading