Skip to content

Instantly share code, notes, and snippets.

@jaikt
Last active August 12, 2021 12:49
Show Gist options
  • Save jaikt/8b1c0aa14da79fd21251b920fe56a299 to your computer and use it in GitHub Desktop.
Save jaikt/8b1c0aa14da79fd21251b920fe56a299 to your computer and use it in GitHub Desktop.
Send An Email Using Python & PyCharm
import smtplib
server = smtplib.SMTP('smtp.address.com', 587)
server.starttls()
server.login('[email protected]','Password')
server.sendmail('',
'[email protected]',
'Sent this email using PYTHON by watching a tutorial video at https://youtu.be/DBigIFA33RY.'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment