Last active
August 12, 2021 12:49
-
-
Save jaikt/8b1c0aa14da79fd21251b920fe56a299 to your computer and use it in GitHub Desktop.
Send An Email Using Python & PyCharm
This file contains hidden or 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 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