cr-connect-workflow/crc/templates/mail_content_template.html
mike cullerton d7a3afe8f4 changed the template to use the responsive html email template at https://github.com/leemunroe/responsive-html-email-template
added method get_cr_connect_wrapper to render our new html email template. This takes the email text generated from the task element documentation as the email_body.
2021-01-27 17:12:03 -05:00

11 lines
248 B
HTML

{% extends "mail_main_template.html" %}
{% block content %}
<div>
{{ email_body | safe }}
</div>
{% endblock %}
{% block footer %}
{{ super() }}
<span>Ramp-Up Toolkit Configurator - University of Virginia</span>
{% endblock %}}