Send html for email change
This commit is contained in:
parent
0d3ebaba47
commit
20a8f29cd6
2 changed files with 8 additions and 4 deletions
|
@ -52,7 +52,13 @@ def email_change_view(request):
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
message = render_email_message(request, email_contexts)
|
message = render_email_message(request, email_contexts)
|
||||||
send_mail(subject, message, settings.EMAIL_HOST_USER, [new_email])
|
send_mail(
|
||||||
|
subject,
|
||||||
|
message,
|
||||||
|
settings.EMAIL_HOST_USER,
|
||||||
|
[new_email],
|
||||||
|
html_message=message,
|
||||||
|
)
|
||||||
profile.email_change_pending = new_email
|
profile.email_change_pending = new_email
|
||||||
profile.save()
|
profile.save()
|
||||||
return redirect("email_change_pending")
|
return redirect("email_change_pending")
|
||||||
|
|
|
@ -2860,10 +2860,8 @@ msgid "New Email"
|
||||||
msgstr "Email mới"
|
msgstr "Email mới"
|
||||||
|
|
||||||
#: judge/views/email.py:25
|
#: judge/views/email.py:25
|
||||||
#, fuzzy
|
|
||||||
#| msgid "Contest with key already exists."
|
|
||||||
msgid "An account with this email already exists."
|
msgid "An account with this email already exists."
|
||||||
msgstr "Mã kỳ thi đã tồn tại."
|
msgstr "Email đã được dùng cho tài khoản khác."
|
||||||
|
|
||||||
#: judge/views/email.py:43
|
#: judge/views/email.py:43
|
||||||
msgid "Email Change Request"
|
msgid "Email Change Request"
|
||||||
|
|
Loading…
Reference in a new issue