Skip to content
Snippets Groups Projects
Commit bb2c3c90 authored by Lukáš Nový's avatar Lukáš Nový
Browse files

Fix email delivery

parent 1f90b423
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ def send_message(user_id, user_name, user_info, subject, body):
"""
send email to yahoo user, user_id is email for yahoo and other openID logins.
"""
send_mail(subject, body, settings.SERVER_EMAIL, ["%s <%s>" % (user_name, user_id)], fail_silently=False)
send_mail(subject, body, settings.SERVER_EMAIL, ["%s <%s@pirati.cz>" % (user_name, user_id)], fail_silently=False)
def generate_constraint(category_id, user):
return category_id
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment