43 lines
1.9 KiB
HTML
43 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; }
|
|
.container { max-width: 600px; margin: 20px auto; background-color: #ffffff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
|
|
h2 { color: #333333; }
|
|
p { color: #555555; line-height: 1.6; }
|
|
.footer { text-align: center; margin-top: 20px; font-size: 0.8em; color: #888888; }
|
|
.highlight { font-weight: bold; color: #007bff; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Hello {{ user_name }},</h2>
|
|
<p>{% trans "This is a friendly reminder for your upcoming schedule" %}:</p>
|
|
<p>
|
|
<span class="highlight">{% trans "Purpose" %}:</span> {{ schedule_purpose }}
|
|
<br>
|
|
<span class="highlight">{% trans "Scheduled At" %}:</span> {{ scheduled_at }}
|
|
<br>
|
|
<span class="highlight">{% trans "Type" %}:</span> {{ schedule_type }}
|
|
<br>
|
|
{% if customer_name != 'N/A' %}
|
|
<span class="highlight">{% trans "Customer" %}:</span> {{ customer_name }}
|
|
<br>
|
|
{% endif %}
|
|
{% if notes %}
|
|
<span class="highlight">{% trans "Notes" %}:</span> {{ notes }}
|
|
<br>
|
|
{% endif %}
|
|
</p>
|
|
<p>{% trans "Please be prepared for your schedule" %}.</p>
|
|
<p>{% trans "Thank you" %}!</p>
|
|
<p class="fs-4">{% trans "The team at Tenhal" %}.</p>
|
|
<div class="footer">
|
|
<p>{% trans "This is an automated reminder. Please do not reply to this email." %}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|