Hello, I am trying to send e-mails with SAS using the cloud-based service SendGrid to no avail. I can successfully send e-mails without SAS by following these steps from SendGrid documentation : https://docs.sendgrid.com/for-developers/sending-email/getting-started-smtp For SAS, I tried using these two different options, but they both give me errors. options emailhost=
(
"smtp.sendgrid.net"
port=25
auth=plain
id="apikey"
pw="my_plain_api_key"
)
; options emailhost=
(
"smtp.sendgrid.net"
port=25
auth=login
id="YXBpa2V5"
pw="my_base64_api_key"
)
; Any idea on what I am doing wrong? Any help would be appreciated. Thank you in advance 🙂
... View more