smtplib — SMTP protocol client — Python 3.10.1 documentation
docs.python.org › 3 › libraryJan 14, 2022 · smtplib. — SMTP protocol client. ¶. Source code: Lib/smtplib.py. The smtplib module defines an SMTP client session object that can be used to send mail to any internet machine with an SMTP or ESMTP listener daemon. For details of SMTP and ESMTP operation, consult RFC 821 (Simple Mail Transfer Protocol) and RFC 1869 (SMTP Service Extensions).
SMTP protocol client in Python (smtplib)
www.tutorialspoint.com › smtp-protocol-client-inJan 16, 2019 · Python's standard library has 'smtplib' module which defines an SMTP client session object that can be used to send mail via Python program. A mail server is an application that handles and delivers e-mail over the internet. Outgoing mail servers implement SMTP, or Simple MailTransfer Protocol, servers which are an Internet standard for email ...