Fix relative links

This commit is contained in:
rubenwardy
2018-12-25 20:25:17 +00:00
parent 0b83d2f2b5
commit c926a812d3
2 changed files with 4 additions and 2 deletions

View File

@@ -22,6 +22,7 @@ from app.tasks import celery
@celery.task()
def sendVerifyEmail(newEmail, token):
print("Sending verify email!")
msg = Message("Verify email address", recipients=[newEmail])
msg.body = "This is a verification email!"
msg.html = render_template("emails/verify.html", token=token)