From c2481f11571821d2377d6c888552b24c76281aac Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Tue, 1 Oct 2019 19:04:55 -0400 Subject: [PATCH] Updated Notify_email (markdown) --- Notify_email.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Notify_email.md b/Notify_email.md index 44b64d3..50ff5a0 100644 --- a/Notify_email.md +++ b/Notify_email.md @@ -50,6 +50,15 @@ You can also adjust the ReplyTo's Name too: Since URL's can't have spaces in them, you'll need to use '**%20**' as a place-holder for one (if needed). In the example above, the email would actually be received as *Optional Name*. +### Multiple To Addresses +By default your `mailto://` URL effectively works out to be `mailto://user:pass@domain` and therefore attempts to send your email to `user@domain` unless you've otherwise specified a `to=`. But you can actually send an email to more then one address using the same URL. Here are some examples (written slightly differently but accomplish the same thing) that send an email to more then one address: +* `mailto://user:pass@domain/?to=target@example.com,target2@example.com` +* `mailto://user:pass@domain/target@example.com/target2@example.com` + +There is no limit to the number of addresses you either separate by comma (**,**) and/or add to your `mailto://` path separated by a slash (**/**). + +The Carbon Copy (**cc=**) and Blind Carbon Copy (*bcc=**) however are applied to each email sent. Hence if you send an email to 3 target users, the entire *cc* and *bcc* lists will be part of all 3 emails. + ### Parameter Breakdown | Variable | Required | Description | ----------- | -------- | -----------