summaryrefslogtreecommitdiffstats
path: root/askbot/templates/email/re_welcome_lamson_on.html
blob: f30345d173ed539076d442bb6d6e9023de40f2df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "email/base_mail.html"%}
{% block headline %}{% trans %}Great, you are ready to use {{ site_name }}!{% endtrans %}{%endblock%}
{% block title %}{% trans %}Great, you are ready to use {{ site_name }}!{% endtrans %}{%endblock%}

{% block content %}
{% if can_post_by_email %}
    <p>{% trans %}You can post questions by emailing them at {{ ask_address }}.{% endtrans %}</p>
    <p>{% trans %}When you receive update notifications, you will be able to respond to them, also by email.{% endtrans %}</p>
    <p>{% trans %}Of course, you can always visit the {{ site_name }} at <a href="{{ site_url }}">{{ site_url }}</a>.{% endtrans %}</p>
{% else %}
    <p>{% trans %}Please visit {{ site_name }} at <a href="{{ site_url }}">{{ site_url }}</a>, we look forward to your posts.{% endtrans %}</p>
{% endif %}
{% endblock %}

{% block footer %}
{% include "email/footer.html" %}
{% endblock %}