https://github.com/danielc92/flask_email
Sending emails with gmail smtp server in flask.
https://github.com/danielc92/flask_email
Last synced: about 1 month ago
JSON representation
Sending emails with gmail smtp server in flask.
- Host: GitHub
- URL: https://github.com/danielc92/flask_email
- Owner: danielc92
- Created: 2018-11-20T00:01:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-18T02:20:43.000Z (over 7 years ago)
- Last Synced: 2025-07-14T01:33:09.644Z (12 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Emailing
Sending emails using a flask web application. For this project I followed one of pretty printed's tutorials quite closely.
# Before you get started
- SMTP Servers
- Flask applications basics
# Setup
**How to obtain this repository:**
```sh
git clone https://github.com/danielc92/flask_email.git
```
**Modules/dependencies:**
- `flask_mail`
- `flask`
- `itsdangerous`
Install the following dependences:
```sh
pip install flask itsdangerous flask_mail
```
Running locally:
```sh
python3 main.py
```
# Tests
- Tested accessing `gmail`'s SMTP server successfully through `python`
- Tested sending mail via the SMTP server
- Tested authenticating links sent via the SMTP server (confirmation links)
# Contributors
- Daniel Corcoran
# Sources
- ['Pretty Printed's Website - For flask tutorials](https://prettyprinted.com/)