I tried changing the email subject and destination, but not the email content, using userdata "EMAIL_SUBJECT_ENDU"
and userdata "EMAIL_DESTINATION"
.
Asked
Active
Viewed 1,048 times
0

Racil Hilan
- 24,690
- 13
- 50
- 55

Pravin
- 1
- 2
-
Summary and actual question seem to be asking different things. What exactly are you looking for? Documentation or email? – Mohammad Nadeem Nov 22 '16 at 10:39
1 Answers
0
If you want to add a documentation link to an email alert then you can do it by putting it in the comment field.
Example:
set $(subject) concat("JobProgress - ", value, ": Batch(es) Has Stalled")
set $(comment1) "Please Refer to Knowledge Base - http://go.answers.net/12345"
if value > 0 then
delay 1 samples
userdata "EMAILS" "Alerts@restricted.com"
userdata "SUBJECT" $(subject)
userdata "LONG_COMMENT" $(comment1)
severity critical
run "EmailAlert"
else
severity ok
endif

HeXDeMoN
- 58
- 1
- 7