Update web.py

This commit is contained in:
Joshua McKenty 2013-09-03 17:03:08 -07:00
parent 87573616de
commit 819c42f508
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import requests
app = Flask(__name__)
app.config['MAILGUN_KEY'] = 'key-7o9l9dupikfpsdvqi0ewot-se8g1hz64'
app.config['MAILGUN_KEY'] = 'key-this-is-a-fake-key'
app.config['MAILGUN_DOMAIN'] = 'hastwoparents.com'
@ -42,7 +42,7 @@ app.config['MAIL_SERVER'] = 'smtp.mailgun.org'
app.config['MAIL_PORT'] = 465
app.config['MAIL_USE_SSL'] = True
app.config['MAIL_USERNAME'] = 'postmaster@hastwoparents.com'
app.config['MAIL_PASSWORD'] = '0sx00qlvqbo3'
app.config['MAIL_PASSWORD'] = 'ugly-password'
mail = Mail(app)