Horje
How to config your flask for gmail Code Example
How to config your flask for gmail
app.config['MAIL_SERVER'] = 'smtp.googlemail.com'
app.config['MAIL_PORT'] = 587
app.config['MAIL_USE_TLS'] = True
app.config['MAIL_USERNAME'] = 'infooveriq@gmail.com'  # enter your email here
app.config['MAIL_DEFAULT_SENDER'] = 'infooveriq@gmail.com' # enter your email here
app.config['MAIL_PASSWORD'] = 'password' # enter your password here

mail = Mail(app)
#...
Source: overiq.com




Python

Related
Why do we use graphs? Code Example Why do we use graphs? Code Example
interpoltaion search formula python Code Example interpoltaion search formula python Code Example
lcm python Code Example lcm python Code Example
how to ask someone for their name in python Code Example how to ask someone for their name in python Code Example
my django template doesnt want to load the static file Code Example my django template doesnt want to load the static file Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7