Send Email From Python Script. Actual usage varies depending on complexity of the email and settings of the email server, the instructions here are based on sending email through gmail. After this, we specify the sender and recipient emails.

Import smtplib server = localhost from = sender@example.com to = [user@example.com] # must be a list subject = hello! text = this message was sent with python's smtplib. Send a plain text email. To run our program we simply call it using python as shown below: