email sender project in python
email sender project in python
Note : Recplace (greater than) and (less than) with their sign/symbol ( Because Youtube donot allow angle brackets in description ) OR You can get this code on github by using github link
Code github Link : https://github.com/ubaidahmadceh/python_projects/blob/main/Email_Sender.py
code :
import smtplib
to = input("Enter recepient Email : ")
content = input("Type Your Message : ")
def sendemail(to, content):
server = smtplib.SMTP('smtp.gmail.com', 587)
server.ehlo()
server.startls()
server.login('senderemail@gmail.com', '1234')
server.sendmail('senderemail@gmail.com', to, content)
server.close()
sendemail(to, content)
email sender app using python,tkinter projects in python,email sender python,email sender application using python,email sender app using tkinter python,send emails using python,how to send email using python,send emails with python,how to send email in python,learn python,tkinter projects,python email sending,python tkinter project,how to send an email with python,python projects,learn programming,python gui project,email tutorial,python email attachment