I am facing this issue still, I have checked all precautions which are giving old issues, my key is set properly. what can i do ?
Code Snippet
import os
from sendgrid import SendGridAPIClient
from sendgrid.helpers.mail import Mail
message = Mail(
from_email='myemail@gmail.com',
to_emails='user'semail@gmail.com',
subject='Sending with Twilio SendGrid is Fun',
html_content='<strong>and easy to do anywhere, even with Python</strong>')
try:
sg = SendGridAPIClient(os.environ.get('SENDGRID_API_KEY'))
response = sg.send(message)
print(response.status_code)
print(response.body)
print(response.headers)
except Exception as e:
print(e)
Issue Summary
I am facing this issue still, I have checked all precautions which are giving old issues, my key is set properly. what can i do ?
Code Snippet
Exception/Log
Technical details: