{% load i18n extra_tags email_tags %} {% declare %} prefix = settings.EMAIL_SUBJECT_PREFIX app_name = settings.APP_SHORT_NAME app_url = settings.APP_URL answer_author = answer.author.username question = answer.question question_url = question.get_absolute_url() question_title = question.title accepted_by = answer.nstate.accepted.by.username {% enddeclare %} {% email %} {% subject %}{% blocktrans %}{{ prefix }} New answer to {{ question_title }}{% endblocktrans %}{% endsubject %} {% htmlcontent notifications/base.html %}
{% blocktrans %} {{ accepted_by }} has just accepted {{ answer_author }}'s answer on his question {{ question_title }}. {% endblocktrans %}
{% endhtmlcontent %} {% textcontent notifications/base_text.html %} {% blocktrans %} {{ accepted_by }} has just accepted {{ answer_author }}'s answer on his question "{{ question_title }}". {% endblocktrans %} {% endtextcontent %} {% endemail %}