Skip to content

Instantly share code, notes, and snippets.

@tbrlpld
Last active April 23, 2020 03:15
Show Gist options
  • Save tbrlpld/ae7cf3543da1ad407eaf67418594f970 to your computer and use it in GitHub Desktop.
Save tbrlpld/ae7cf3543da1ad407eaf67418594f970 to your computer and use it in GitHub Desktop.
Send emails with Python (and Sendgrid)
# 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))
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()
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