Skip to content

Commit

Permalink
Fixed #3
Browse files Browse the repository at this point in the history
Added inline documentation to reflect how code works , it's inputs and it's usefulness.
  • Loading branch information
sunilgoda committed Oct 19, 2019
1 parent 7fe90f6 commit f135ff2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import smtplib, ssl, time
'''
This file takes the SMTP Sender Email address, Receiver Email address as inputs and
sends a mail with a specific message using GMail as the SMTP server.
This file is useful to send mails from the commandline or programmatically without opening a browser
'''
port = 465 # For SSL
smtp_server = "smtp.gmail.com"
sender_email = "" # Enter sender's email
Expand Down

0 comments on commit f135ff2

Please sign in to comment.