Skip to content

Commit 60c52fd

Browse files
committed
vale
1 parent ea5fc49 commit 60c52fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/integrations/flask-celery-integration.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Overview
2222
--------
2323

2424
In this tutorial, you can learn how to build a newsletter platform using
25-
MongoDB, Celery and Flask. This application allows users to subscribe to
25+
MongoDB, Celery, and Flask. This application allows users to subscribe to
2626
newsletters, and administrators to manage and send batch emails asynchronously.
2727

2828
Celery
@@ -148,7 +148,7 @@ Define the necessary configurations by adding the following code to your
148148
MAIL_SERVER = 'smtp.gmail.com'
149149
MAIL_PORT = 587
150150
MAIL_USE_TLS = True
151-
MAIL_USERNAME = '<username>' # Your email address without the domain, i.e. without '@gmail.com'
151+
MAIL_USERNAME = '<username>' # Your email address without the domain, that is without '@gmail.com'
152152
MAIL_PASSWORD = '<app password>'
153153
ALLOWED_IPS = ['127.0.0.1']
154154
MONGO_URI = '<connection-string>'
@@ -206,7 +206,7 @@ and configures your Celery task queue.
206206
Define Your Routes
207207
~~~~~~~~~~~~~~~~~~
208208

209-
Define the root, admin, subscribe and send-newsletter routes by adding the following code to your ``routes.py`` file:
209+
Define the root, admin, subscribe, and send-newsletter routes by adding the following code to your ``routes.py`` file:
210210

211211
.. code-block:: python
212212

0 commit comments

Comments
 (0)