Fixed Rundeck example
parent
e1eca2323e
commit
bb2f9cbe2b
|
@ -506,17 +506,16 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \
|
||||||
|
|
||||||
|
|
||||||
## Rundeck
|
## Rundeck
|
||||||
Rundeck by default sends only HTML email which is not processed by ntfy SMTP server.
|
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) :
|
||||||
Append following configurations to [rundeck-config.properties](https://docs.rundeck.com/docs/administration/configuration/config-file-reference.html) :
|
|
||||||
|
|
||||||
```
|
```
|
||||||
# Template
|
# Template
|
||||||
rundeck.mail.template.file=/path/to/template.html
|
rundeck.mail.template.file=/path/to/template.html
|
||||||
rundeck.mail.template.log.formatted=false
|
rundeck.mail.template.log.formatted=false
|
||||||
```
|
```
|
||||||
Example `template.html`:
|
|
||||||
|
|
||||||
|
Example `template.html`:
|
||||||
```html
|
```html
|
||||||
<div>Execution ${execution.id} was <b>${execution.status}</b></div>
|
<div>Execution ${execution.id} was <b>${execution.status}</b></div>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -525,13 +524,9 @@ Example `template.html`:
|
||||||
<li><a href="${execution.projectHref}">Project: ${execution.project}</a></li>
|
<li><a href="${execution.projectHref}">Project: ${execution.project}</a></li>
|
||||||
<li><a href="${rundeck.href}">Rundeck</a></li>
|
<li><a href="${rundeck.href}">Rundeck</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
|
||||||
|
|
||||||
</p>
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Add notification on Rundeck:
|
Add notification on Rundeck (attachment type must be: `Attached as file to email`):
|
||||||
![Rundeck](static/img/rundeck.png)
|
![Rundeck](static/img/rundeck.png)
|
||||||
|
|
||||||
Attachment type must be: `Attached as file to email`
|
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ and the [ntfy Android app](https://github.com/binwiederhier/ntfy-android/release
|
||||||
**Documentation:**
|
**Documentation:**
|
||||||
|
|
||||||
* Updated developer docs, bump nodejs and go version ([#414](https://github.com/binwiederhier/ntfy/issues/414), thanks to [@YJSoft](https://github.com/YJSoft) for reporting)
|
* Updated developer docs, bump nodejs and go version ([#414](https://github.com/binwiederhier/ntfy/issues/414), thanks to [@YJSoft](https://github.com/YJSoft) for reporting)
|
||||||
|
* Added Rundeck example ([#427](https://github.com/binwiederhier/ntfy/pull/427), thanks to [@demogorgonz](https://github.com/demogorgonz))
|
||||||
|
|
||||||
**Additional translations:**
|
**Additional translations:**
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue