Tag: smtp

  • Send Encrypted Emails using Python and SMTP

    Send Encrypted Emails using Python and SMTP

    How to send encrypted emails using Python, SMTP and a Gmail account? Privacy is frequently lost as online data harvesting and security concerns grow. Because online privacy is so lacking, I began to consider a solution to encrypt messages. Because Python is such a versatile language, I wanted to see what I could achieve with…

  • How To: Send Email using Python and SMTP

    How To: Send Email using Python and SMTP

    Simple Mail Transfer Protocol (SMTP) is a protocol, which handles sending e-mail and routing e-mail between mail SMTP stands for Simple Mail Transfer Protocol, and it’s an application used by mail servers to send, receive, and/or relay outgoing mail between email senders and receivers.  Python provides an smtplib module, which defines an SMTP client session object that…