15 lines
240 B
HTML
15 lines
240 B
HTML
{% extends "emailbase.html" %}
|
|
{% block body %}
|
|
<p>Dear <strong>{{ rowername }}</strong>,</p>
|
|
|
|
<p>
|
|
{{ message }}
|
|
</p>
|
|
|
|
<p>
|
|
This email was sent on behalf of the challenge organizer, who was copied on this message.
|
|
</p>
|
|
|
|
|
|
{% endblock %}
|