diff --git a/docs/examples.md b/docs/examples.md index 3f58d94..c371b61 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -504,3 +504,34 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \ ntfy://ntfy.example.com/mytopic ``` + +## Rundeck +Rundeck by default sends only HTML email which is not processed by ntfy SMTP server. + +Append following configurations to [rundeck-config.properties](https://docs.rundeck.com/docs/administration/configuration/config-file-reference.html) : + +``` +# Template +rundeck.mail.template.file=/path/to/template.html +rundeck.mail.template.log.formatted=false +``` +Example `template.html`: + +```html +
Execution ${execution.id} was ${execution.status}
+ +

+ +

+``` + +Add notification on Rundeck: +![Rundeck](static/img/rundeck.png) + +Attachment type must be: `Attached as file to email` + diff --git a/docs/static/img/rundeck.png b/docs/static/img/rundeck.png new file mode 100644 index 0000000..9c5a8a8 Binary files /dev/null and b/docs/static/img/rundeck.png differ