28 lines
683 B
Python
28 lines
683 B
Python
|
from app import app
|
||
|
|
||
|
from util.useremails import send_recovery_email
|
||
|
|
||
|
from data import model
|
||
|
|
||
|
import argparse
|
||
|
|
||
|
from flask import Flask, current_app
|
||
|
from flask_mail import Mail
|
||
|
|
||
|
def sendReset(username):
|
||
|
user = model.user.get_nonrobot_user(username)
|
||
|
if not user:
|
||
|
print 'No user found'
|
||
|
return
|
||
|
|
||
|
|
||
|
with app.app_context():
|
||
|
confirmation_code = model.user.create_reset_password_email_code(user.email)
|
||
|
send_recovery_email(user.email, confirmation_code)
|
||
|
print 'Email sent to %s' % (user.email)
|
||
|
|
||
|
parser = argparse.ArgumentParser(description='Sends a reset email')
|
||
|
parser.add_argument('username', help='The username')
|
||
|
args = parser.parse_args()
|
||
|
sendReset(args.username)
|