u-ichi / fluent-plugin-mail

Fluentd output plugin to send mail
https://rubygems.org/gems/fluent-plugin-mail
Other
48 stars 20 forks source link

AWS SES Smtp server support #37

Open M22an opened 6 years ago

M22an commented 6 years ago

Can I use AWS SES smtp server for sending email ?

Amanjain1612 commented 6 years ago

Yes, we can use it.

Check this out:

<match **>
  type mail
  host email-smtp.us-east-1.amazonaws.com
  port 587
  from email_id
  to email_id
  subject SUBJECT
  user **********
  password ********************************
  enable_starttls_auto true
  enable_tls false
  message MESSAGE
</match>
hradgb commented 1 year ago

kk