Sending emails using Python
Thanks to the large standard library, Python is the right tool to write a portable script to send emails. The core functionality to encode an email is contained inside the “email” Python module. The conncetion to the smtp is managed by means of the “smtp” module.
Continue reading “Sending emails using Python”