Hello I created a watcher that sends a csv to email.
Here's the watcher:
{
"trigger" : {
"schedule": {
"interval": "1h"
}
},
"actions" : {
"email_admin" : {
"email": {
"to": "<redacted>",
"subject": "Error Monitoring Report",
"attachments" : {
"error_report.csv" : {
"reporting" : {
"url": "<redacted>",
"retries":40,
"interval":"15s",
"auth":{
"basic":{
"username":"elastic",
"password":"changeme"
}
}
}
}
}
}
}
}
}
My question is how can I add to the email body?
This is how it looks on the recieving end:
I want to add additional context to the email body