Answer Posted / chaitanya
The smtplib module defines an SMTP client session object that can be used to send mail to any Internet machine.
A sample email is demonstrated below.
import smtplib
SERVER = smtplib.SMTP(‘smtp.server.domain’)
FROM = sender@mail.com
TO = ["user@mail.com"] # must be a list
SUBJECT = "Hello!"
TEXT = "This message was sent with Python's smtplib."
# Main message
message = """
From: Sarah Naaz < sender@mail.com >
To: CarreerRide user@mail.com
Subject: SMTP email msg
This is a test email. Acknowledge the email by responding.
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)
server = smtplib.SMTP(SERVER)
server.sendmail(FROM, TO, message)
server.quit()
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Are there maps in python?
What is a 4 tuple?
Explain raise keyword?
What does the map() function do?
What is the tool used to check python code standards?
What does nan mean in python?
What are the nameless functions in python?
Can we overload constructor in python?
Name some standard python errors you know?
What is flask- wtf? Explain its features.
What is the difference between interpreted and compiled languages?
Please explain in python what is slicing?
Is python is better than java?
How do I make python scripts executable?
Does apple use python?