mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-04 13:54:32 +01:00
17 lines
1.1 KiB
HTML
17 lines
1.1 KiB
HTML
|
{% extends "helpdesk/emails/base.html" %}
|
||
|
|
||
|
{% block header %}Your Ticket Has Been Resolved{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>Hello,</p>
|
||
|
|
||
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>You recently logged a ticket with a subject of <i>{{ ticket.title }}</i> with us. This e-mail is to advise you of a resolution to that ticket.</p>
|
||
|
|
||
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>The following resolution was added to ticket <b>{{ ticket.ticket }}</b>:</p>
|
||
|
|
||
|
<blockquote style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt; padding-left: 20px; border-left: solid #ccc 2px;'>{{ resolution }}</blockquote>
|
||
|
|
||
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>Can you please confirm that this resolution addresses your needs so we may close this ticket? If you have any further queries, or if you do not believe this resolution is adequate, please reply to this e-mail and keep the subject intact.</p>
|
||
|
|
||
|
{% endblock %}
|