Last active
April 23, 2020 03:15
-
-
Save tbrlpld/ae7cf3543da1ad407eaf67418594f970 to your computer and use it in GitHub Desktop.
Send emails with Python (and Sendgrid)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from here: https://github.com/sendgrid/sendgrid-python#quick-start | |
import os | |
from sendgrid import SendGridAPIClient | |
from sendgrid.helpers.mail import Mail | |
message = Mail( | |
from_email='[email protected]', | |
to_emails='[email protected]', | |
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(str(e)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import smtplib | |
from email.message import EmailMessage | |
msg = EmailMessage() | |
msg.set_content("Just some content") | |
msg['Subject'] = 'This is the message' | |
msg['From'] = "[email protected]" | |
msg['To'] = "[email protected]" | |
s = smtplib.SMTP( | |
host="smtp.sendgrid.net", | |
port=587, | |
) | |
s.login( | |
user="apikey", | |
password=os.environ["SENDGRID_API_KEY"], | |
) | |
s.send_message(msg) | |
s.quit() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python-http-client==3.2.1 | |
sendgrid==6.1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment