Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Sending email from python
# Python code to illustrate Sending mail from # your Gmail account import smtplib # creates SMTP session s = smtplib.SMTP('smtp.gmail.com', 587) # start TLS for security s.starttls() # Authentication s.login("sender_email_id", "sender_email_id_password") # message to be sent message = "Message_you_need_to_send" # sending the mail s.sendmail("sender_email_id", "receiver_email_id", message) # terminating the session s.quit()
run
|
edit
|
history
|
help
1
Partition To 2 Equal Sum Subsets From An Array of Integers
16jan
Brother's share
Multiply two marrix
sensi cod
Uniform Cost Search
my first print
teretere
Primes finding algorithm
Reading XML file for modification