mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-03 05:14:46 +01:00
6ef420427d
* Added support for e-mailing submitter when a ticket is closed * Added facility to e-mail owner when someone else acts on their ticket
15 lines
876 B
HTML
15 lines
876 B
HTML
{% extends "helpdesk/emails/base.html" %}
|
|
|
|
{% block header %}Your Ticket Has Been Closed{% 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 confirm that this ticket has been closed.</p>
|
|
|
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>If you believe that further work is required on this ticket, please let us know by replying to this e-mail and keeping the subject intact.</p>
|
|
|
|
<p style='font-family: "Trebuchet MS", Arial, sans-serif; font-size: 11pt;'>If you wish to view this ticket online, you can visit <a href="{{ ticket.get_ticket_url }}">{{ ticket.get_ticket_url }}</a>.</p>
|
|
|
|
{% endblock %}
|