forked from extern/django-helpdesk
10 lines
325 B
HTML
10 lines
325 B
HTML
|
{% extends "helpdesk/emails/base.html" %}
|
||
|
|
||
|
{% block header %}E-Mail Heading Here{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>Dear User,</p>
|
||
|
|
||
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>This is some content.</p>
|
||
|
{% endblock %}
|