Hi guys,
I've configured the elasticsearch.yml and the PUT message in order to test if I can receive some emails but I'm not receiving it and I'm getting the follow message when posting the put:
{
"_id": "log_error_watch",
"_version": 74,
"_seq_no": 243,
"_primary_term": 11,
"created": false
}
My message is the following:
{
"trigger": {
"schedule": {
"interval": "20h"
}
},
"actions": {
"send_email": {
"email": {
"to": "email@xxxxx.xxx",
"subject": "Testing Email Delivery Alerting",
"body": "Body content goes here"
}
}
}
}
the elasticsearch.yml:
xpack.security.enabled: false
xpack.notification.email.account:
standard_account:
profile: standard
smtp:
auth: false
starttls.enable: false
host: smtp-xxxx.xxxx
port: 25
Am I doing something wrong?