Notification channel Email cannot integrate with Sendgrid

Hi guys, I am trying to create an email notification channel in Grafana. I am using Sendgrid. When I tested email notification with Gmail 587 port it worked perfectly. But when integrating with Sendgrid, it returns an error

535 Authentication failed: The provided authorization grant is invalid, expired, or revoked.

My SMTP config file
[smtp]
enabled= true
host=smtp. sendgrid. net: 587 # since new users cannot add more than 2 links I kept spaces here
user=“YXBpa2V5”
password=“XXXXX”
cert_file=
key_file=
skip_verify:=true
from_address="admin@grafana.com"
from_name=Grafana

I tried telnet smtp.sendgrid.net:587 with credentials, and authentication was successful. Can anyone point out where have things gone wrong?

1 Like

Hi,

Can you put skip_verify to false, as per the documentation :

https://support.websoft9.com/docs/grafana/solution-smtp.html

Good Luck

1 Like