Updated Notify_mailgun (markdown)

Chris Caron 2022-09-10 11:27:37 -04:00
parent 1ca033988f
commit c7d15f6427

@ -11,7 +11,7 @@ You can create an account for free [on their website](https://www.mailgun.com/)
For each domain you set up with them, you'll be able access them all from your dashboard once you're signed in. Here is a [quick link](https://app.mailgun.com/app/domains) to it. If you're using a free account; at the very least you will be able to see your _sandbox domain_ here. From here you can also acquire your **API Key** associated with each domain you've set up.
### Syntax
Valid syntaxes are as follows:
Valid syntax is as follows:
* **mailgun**://**{user}**@**{domain}**/**{apikey}**/
* **mailgun**://**{user}**@**{domain}**/**{apikey}**/**{email}**/
* **mailgun**://**{user}**@**{domain}**/**{apikey}**/**{email1}**/**{email2}**/**{emailN}**/
@ -46,5 +46,6 @@ Send a mailgun notification to the email address bill.gates@microsoft.com
# Assuming our {apikey} is 4b4f2918fd-dk5f-8f91f
# We already know our To {email} is bill.gates@microsoft.com
# Assuming we want our email to come from noreply@example.com
apprise mailgun:///noreply@example.com/4b4f2918fd-dk5f-8f91f/bill.gates@microsoft.com
apprise -vv -t "Email Subject" -b "Message Body" \
mailgun:///noreply@example.com/4b4f2918fd-dk5f-8f91f/bill.gates@microsoft.com
```