From 2f1d28df4a1c22c5de78c32958162f9366ff920a Mon Sep 17 00:00:00 2001 From: Alvaro Vega Date: Mon, 16 Feb 2026 17:06:00 +0100 Subject: [PATCH 1/3] Update plain_rules.md with email field details Clarify usage of 'to' field for multiple email recipients and mention SMTP configuration. --- docs/API/plain_rules.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/API/plain_rules.md b/docs/API/plain_rules.md index e81ad2a6..d5304951 100644 --- a/docs/API/plain_rules.md +++ b/docs/API/plain_rules.md @@ -372,6 +372,11 @@ 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 `;` like: +```json + "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: From 49ad589c3d409e352c768c8ef3b5a25d15301d77 Mon Sep 17 00:00:00 2001 From: Alvaro Vega Date: Mon, 16 Feb 2026 17:11:03 +0100 Subject: [PATCH 2/3] Update plain_rules.md --- docs/API/plain_rules.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/API/plain_rules.md b/docs/API/plain_rules.md index d5304951..8c18f4c5 100644 --- a/docs/API/plain_rules.md +++ b/docs/API/plain_rules.md @@ -372,9 +372,10 @@ 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 `;` like: +Regarding with `to` field, it is possible to include several email destinataries by separating with `;` or even better `, ` like: ```json - "to": "someone@acme.com; anotherone@acme.com", + "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 From 3c7eb00e74514aabf234d3a68ee36a997d0bc85b Mon Sep 17 00:00:00 2001 From: Alvaro Vega Date: Mon, 16 Feb 2026 17:15:15 +0100 Subject: [PATCH 3/3] Update plain_rules.md --- docs/API/plain_rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/API/plain_rules.md b/docs/API/plain_rules.md index 8c18f4c5..f0353bcd 100644 --- a/docs/API/plain_rules.md +++ b/docs/API/plain_rules.md @@ -372,7 +372,7 @@ 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 even better `, ` like: +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"