HH/templates/emails/survey_invitation.html
ismail c5f76b3855
Some checks are pending
Build and Push Docker Image / build (push) Waiting to run
updates
2026-05-11 14:45:30 +03:00

39 lines
1.6 KiB
HTML

{% extends 'emails/base_email_template.html' %}
{% load i18n %}
{% block title %}{% trans "Patient Survey Invitation - Al Hammadi Hospital" %}{% endblock %}
{% block preheader %}{% trans "We value your feedback! Please share your experience with us." %}{% endblock %}
{% block content %}
<p style="margin: 0 0 15px;">
{% trans "Dear" %} <strong>{{ patient_name|default:_("Valued Patient") }}</strong>>,
</p>
<p style="margin: 0 0 15px;">
{% blocktrans with visit=visit_date|default:_("your recent visit") %}Thank you for choosing Al Hammadi Hospital for your healthcare needs. We hope your recent visit on {{ visit }} met your expectations.{% endblocktrans %}
</p>
<p style="margin: 0 0 15px;">
{% trans "We would greatly appreciate it if you could take a few minutes to complete our satisfaction survey. Your feedback helps us improve our services." %}
</p>
<p style="margin: 0 0 25px; font-size: 14px; color: #666666;">
{% trans "The survey takes only 3-5 minutes and your responses are confidential." %}
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td align="center">
<a href="{{ survey_url }}"
style="display: inline-block; padding: 12px 32px; font-size: 16px; font-weight: 600; color: #ffffff; text-decoration: none; border-radius: 6px; background-color: #005696;">
{% trans "Take Survey" %}
</a>
</td>
</tr>
</table>
<p style="margin: 25px 0 0; font-size: 13px; color: #999999;">
{% trans "Thank you for your time and feedback." %}
</p>
{% endblock %}