Replies: 1 comment 1 reply
-
|
I don't know about AWS SES specifically, but you can use an outgoing relay with the # Use SendGrid SMTP relay for outbound mail
# Replaces target.remote section
target.smtp outbound_delivery {
# Only allow TLS connection
attempt_starttls yes
require_tls yes
# Authentication method
# Sendgrid has user = "apikey" and password = "<key">
auth plain apikey <key>
# SMTP server
targets tcp://smtp.sendgrid.net:587
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
For example I want to use AWS SES to handle all outgoing messages. In fact I do it just from email client, but it is not convenient to set up clients to use different creds for IMAP and SMTP.
My goal is use single creds for SMTP and IMAP but still want to relay all outgoing messages to AWS SES, since it takes care about DKIM and other things that I don't want to care about.
Beta Was this translation helpful? Give feedback.
All reactions