Hi Guys,
I am trying to send one mail using Logstash. But it is showing me the below error.
[2020-06-18T05:22:07,194][ERROR][logstash.outputs.email ][main][512971a1bbd8e3d87adcfe9cc5b0b967ba2fb68f59d51b18509fb52128858b75] Something happen while delivering an email {:exception=>#<EOFError: end of file reached>}
I am using this below configuration file.
input {
stdin {}
}
output {
email {
to => "nadim69.na@gmail.com"
body => "Message: This is Nadeem"
address => "smtp.gmail.com"
port => 465
username => "nadim70.na@gmail.com"
password => "nadeem70@"
use_tls => true
}
}