Updated Notify_email (markdown)

Chris Caron 2019-10-01 19:04:55 -04:00
parent f33b385927
commit c2481f1157

@ -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
| ----------- | -------- | -----------