Files
zulip/templates/zerver/emails/support_request.html
Daniil Fadeev d79f4d4f46 emails: Fix style regression for dynamically generated content.
The migration to css-inline "fixed" the fact that styles from this
file previously were never applied to the internals of missed-message
emails.

Rewrite much of the CSS to more correctly scope to apply to the
appropriate elements, and document with comments the purpose of most
blocks.

Co-authored-by: Tim Abbott <tabbott@zulip.com>
2023-04-25 17:53:14 -07:00

22 lines
378 B
HTML

{% extends "zerver/emails/email_base_messages.html" %}
{% block content %}
<b>Support URL</b>: <a class="support_request_link" href="{{ support_url }}">{{ support_url }}</a>
<br /><br />
<b>Subject</b>: {{ request_subject }}
<br /><br />
<b>Message</b>:
<br />
{{ request_message }}
<br /><br />
<b>Requested by</b>: {{ requested_by }} ({{ user_role }})
{% endblock %}