Skip to content

Instantly share code, notes, and snippets.

@okay-type
Created May 16, 2019 21:32
Show Gist options
  • Save okay-type/10102b0dbd5e598e50b8dbbf5d8e166c to your computer and use it in GitHub Desktop.
Save okay-type/10102b0dbd5e598e50b8dbbf5d8e166c to your computer and use it in GitHub Desktop.
send email from python
import smtplib
# this uses a burner gmail account to send from
# I use this to email my phone's sms email
email = '[email protected]'
text = 'hello sms'
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login('[email protected]', 'password')
server.sendmail('Robofont', email, text)
server.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment