How to make email sending bot using python in sinhala


Python වලින් email යවන robot 🤖 කෙනෙක් හදමු

පළමු කොටස

වීඩියෝව නැරඹීමට පින්තූරය මත ක්ලික් කරන්න




import smtplib
from email.message import EmailMessage

def sendMail(receiver, subject, message):
print ("Your Email is composing. Please wait..")

server = smtplib.SMTP("smtp.gmail.com",587)
server.ehlo() #Authentication
server.starttls() #Authentication
server.ehlo() #Authentication

server.login("botsinhala@gmail.com","60t51nh@l@")
#server.login("botsinhala@gmail.com","password")

mail=EmailMessage()
mail["From"]="botsinhala@gmail.com"
mail["To"]=receiver
mail["Subject"]=subject
mail.set_content(message)

server.send_message(mail)
server.close()
print("Email sent successfully to ",receiver,"\n")

sendMail("gadjetrathnayake@gmail.com","testing message 1","This is a testing")
sendMail("achintha.rathnayake@yahoo.com","testing message 1","This is a testing")

Comments

Post a Comment