{% load i18n extra_tags email_tags %} {% declare %} prefix = settings.EMAIL_SUBJECT_PREFIX app_name = settings.APP_SHORT_NAME app_url = settings.APP_URL newmember_name = newmember.username newmember_url = newmember.get_profile_url() {% enddeclare %} {% email %} {% subject %}{% blocktrans %}{{ prefix }}{{ newmember_name }} is a new member on {{ app_name }}{% endblocktrans %}{% endsubject %} {% htmlcontent notifications/base.html %} {% declare %} newmember_link = html.objlink(newmember, style=a_style) {% enddeclare %}

{% blocktrans %} {{ newmember_link }} has just joined {{ app_name }}. You can visit {{ newmember_name }}'s profile using the following link:
{{ newmember_name }} profile {% endblocktrans %}

{% endhtmlcontent %} {% textcontent notifications/base_text.html %} {% blocktrans %} {{ newmember_name }} has just joined {{ app_name }}. You can visit {{ newmember_name }}'s profile using the following url:
{{ app_url }}{{ newmember_url }} {% endblocktrans %} {% endtextcontent %} {% endemail %}