Skip to content

Commit 268cfb4

Browse files
committed
Doc: Add links to other relevant tutorials
1 parent 9f3f93f commit 268cfb4

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

email_support_in_flask.md

+21
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,27 @@ Many circumstances might require you to add email support to your application. I
44

55
The completed project can be found on [GitHub](https://github.com/GitauHarrison/how-to-add-email-support-in-a-flask-app/).
66

7+
If you would like to learn more about how to use a real email server especially in production, you can check out the Twilio SendGrid series below:
8+
9+
- [SendGrid Overview](twilio_sendgrid/00_overview.md)
10+
- [Create A Twilio SendGrid Account](twilio_sendgrid/01_create_acccount.md)
11+
- [Send Emails Using Twilio SendGrid](twilio_sendgrid/02_send_emails_using_sendgrid.md)
12+
- [Receive Emails Using Twilio SendGrid](twilio_sendgrid/03_receive_emails_using_sendgrid.md)
13+
- [Verify An Email Address Using Twilio Sendgrid](twilio_sendgrid/04_email_verification.md)
14+
15+
16+
### Table Of Content
17+
18+
- [Configure Flask-Mail](#configure-flask-mail)
19+
- [Add Email Server Details](#add-email-server-details)
20+
- [Using Flask-Mail](#using-flask-mail)
21+
- [Defining A Simple Email Framework](#defining-a-simple-email-framework)
22+
- [Request A Password Reset](#request-a-password-reset)
23+
- [Generating Password Reset Tokens](#generating-password-reset-tokens)
24+
- [Sending Password Reset Email](#sending-password-reset-email)
25+
- [Resetting A User's Password](#resetting-a-users-password)
26+
- [Asynchronous Emails](#asynchronous-emails)
27+
728

829
## Configure Flask-Mail
930

twilio_sendgrid/01_create_acccount.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Create Twilio SendGrid Account
22

33

4+
If you would like to check out other parts of the Twilio SendGrid series, you can find them below:
5+
6+
- [SendGrid Overview](twilio_sendgrid/00_overview.md)
7+
- [Create A Twilio SendGrid Account](twilio_sendgrid/01_create_acccount.md)
8+
- [Send Emails Using Twilio SendGrid](twilio_sendgrid/02_send_emails_using_sendgrid.md)
9+
- [Receive Emails Using Twilio SendGrid](twilio_sendgrid/03_receive_emails_using_sendgrid.md)
10+
- [Verify An Email Address Using Twilio Sendgrid](twilio_sendgrid/04_email_verification.md)
11+
12+
Is it your first time implementing email support in your Flask app? [Start here](/email_support_in_flask.md).
13+
414
## Create Account
515

616
To configure an email verification solution, you have to connect your Twilio and SendGrid accounts. [Click here to create a free account](https://signup.sendgrid.com/), which allows you to send up to 100 emails per day.

twilio_sendgrid/04_email_verification.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
# Email Verification Using SendGrid, Verify, and Flask
22

3-
When you search for how to send emails in Flask, you will come across a ton of content on how to do so. Below, you will learn how to utilize Twilio SendGrid to send emails from a flask application.
3+
When you search for how to send emails in Flask, you will come across a ton of content on how to do so. Below, you will learn how to utilize Twilio SendGrid to send emails from a flask application. One possible use case for sending emails is when you want to enforce the authenticity of user emails in your application. A user who keys in their email address will be required to prove that they have access to the email by retrieving a token sent to their inbox.
4+
5+
If you would like to check out other parts of the Twilio SendGrid series, you can find them below:
6+
7+
- [SendGrid Overview](twilio_sendgrid/00_overview.md)
8+
- [Create A Twilio SendGrid Account](twilio_sendgrid/01_create_acccount.md)
9+
- [Send Emails Using Twilio SendGrid](twilio_sendgrid/02_send_emails_using_sendgrid.md)
10+
- [Receive Emails Using Twilio SendGrid](twilio_sendgrid/03_receive_emails_using_sendgrid.md)
11+
- [Verify An Email Address Using Twilio Sendgrid](twilio_sendgrid/04_email_verification.md)
12+
13+
Is it your first time implementing email support in your Flask app? [Start here](/email_support_in_flask.md).
414

5-
One possible use case for sending emails is when you want to enforce the authenticity of user emails in your application. A user who keys in their email address will be required to prove that they have access to the email by retrieving a token sent to their inbox.
615

716
### Table of Contents
817

0 commit comments

Comments
 (0)