Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Flask gmail config

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)
#...
Comment

PREVIOUS NEXT
Code Example
Python :: Tk.destroy arguments 
Python :: how to add a image in tkinter 
Python :: how to make a star in python turtle 
Python :: how to get size of folder python 
Python :: create boto3 s3 client with credentials 
Python :: read csv as list python 
Python :: get_object_or_404 django 
Python :: degree symbol in python 
Python :: pyqt5 set window icon 
Python :: selenium python get innerhtml 
Python :: change date format python 
Python :: Update all packages using pip on Windows 
Python :: autoslugfield django 3 
Python :: Python Current time using datetime object 
Python :: display cv2 image in jupyter notebook 
Python :: make y axis start at 0 python 
Python :: how to remember to put a semicolon after your code 
Python :: python show interpreter path 
Python :: print random string from list python 
Python :: python distance between coordinates 
Python :: python code region 
Python :: convert mp3 to wav python 
Python :: python count words in file 
Python :: python requests get title 
Python :: frequency count of values in pandas dataframe 
Python :: selenium-screenshot python 
Python :: python pandas drop column by index 
Python :: pandas drop empty columns 
Python :: jupyter notebook pass python variable to shell 
Python :: python split range equally 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =