Subscribe to:
Posts (Atom)
Sending email using Python
Python has provided smtplib library in order to send email. import smtplib #domain name for the smtp server and port number conn = smtplib.S...
-
Loops are an essential part of any programing language. This will help not only in reducing the rewriting of code but also helps in iterati...
-
While sending email using python, we should use two modules "smtplib" and "email". These two modules will help in creati...
-
While solving business problems, many times we come across a problem wherein we have to remove the duplicate values from the list or an arra...
