0% found this document useful (0 votes)
46 views1 page

Mini Project

The document contains a Python script for sending an email using Gmail's SMTP server. It includes the sender's name and registration number, as well as instructions to enable less secure apps in the Gmail account. The script successfully sends an email regarding health concerns related to COVID-19.

Uploaded by

DEEP RATHI
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
46 views1 page

Mini Project

The document contains a Python script for sending an email using Gmail's SMTP server. It includes the sender's name and registration number, as well as instructions to enable less secure apps in the Gmail account. The script successfully sends an email regarding health concerns related to COVID-19.

Uploaded by

DEEP RATHI
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

In [1]:

print("NAME : KIM SHARMA")


print("REGISTRATION NUMBER : 21BIT0661")
print("PLEASE TURN ON LESS SECURITY APP IN YOUR GOGGLE ACCOUNT FROM WHICH YOU WANT TO

import smtplib

gmail_user = '[email protected]'
gmail_password = '8290138851'

sent_from = gmail_user
to = ['[email protected]', '[email protected]']
subject = 'For a concern regarding your health'
body = 'How are you, I came to know that you are suffering with COVID, wish a speedy r

email_text = """\
From: %s
To: %s
Subject: %s

%s
""" % (sent_from, ", ".join(to), subject, body)

try:
smtp_server = smtplib.SMTP_SSL('smtp.gmail.com', 465)
smtp_server.ehlo()
smtp_server.login(gmail_user, gmail_password)
smtp_server.sendmail(sent_from, to, email_text)
smtp_server.close()
print ("Email sent successfully!")
except Exception as ex:
print ("Something went wrong….",ex)

NAME : KIM SHARMA


REGISTRATION NUMBER : 21BIT0661
PLEASE TURN ON LESS SECURITY APP IN YOUR GOGGLE ACCOUNT FROM WHICH YOU WANT TO SEND TH
E MAIL
Email sent successfully!

In [ ]:

You might also like