Skip to content
Merged
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
6 changes: 6 additions & 0 deletions docs/API/plain_rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,12 @@ The `template`, `from`, `to` and `subject` fields perform [string substitution](
content body resulting in `template` is an HTML content then email will be sent as HTML and plain text, in order to
ensure accesibility and compability.

Regarding with `to` field, it is possible to include several email destinataries by separating with `;` or `,` like:
```json
"to": "someone@acme.com; anotherone@acme.com"
"to": "someone@acme.com, anotherone@acme.com"
```

Additionally, Email action could include a `smtp` field to include SMTP configuration (see
[nodemailer transport options for full detail](https://nodemailer.com/smtp/) which overwrites global SMTP configuration:

Expand Down