mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-23 16:33:53 +01:00
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 %}
|