19 lines
262 B
HTML
19 lines
262 B
HTML
{% extends "emailbase.html" %}
|
|
|
|
{% block body %}
|
|
<p>Dear <strong>{{ first_name }}</strong>,</p>
|
|
|
|
<p>
|
|
Your workout has been added to Rowsandall.com.
|
|
</p>
|
|
|
|
<p>
|
|
Link to workout: {{ link }}
|
|
</p>
|
|
|
|
|
|
<p>
|
|
Best Regards, the Rowsandall Team
|
|
</p>
|
|
{% endblock %}
|