Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Email Output #22

Open
wearpants opened this issue May 1, 2013 · 1 comment
Open

Email Output #22

wearpants opened this issue May 1, 2013 · 1 comment
Labels
Milestone

Comments

@wearpants
Copy link
Owner

an output that sends email. sigh.

@arpit1997
Copy link

I can suggest something for this issue.

  • you can send a mail very easily using smtplib here is a sample code for that.
>>> server = smtplib.SMTP('smtp.gmail.com', 587)
>>> server.starttls()
>>> server.login(email_address, email_password)
>>> server.sendmail(email_address, email, msg)
>>> server.quit()

Just a small help.
Thank you
😺 😺 😺

@wearpants wearpants modified the milestones: 0.5, 0.6 Oct 18, 2017
@wearpants wearpants added this to the 0.6 milestone Oct 20, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants