fix: batch reminder email subject and content

This commit is contained in:
Jannat Patel
2025-03-13 06:08:00 +05:30
parent efb694a6e6
commit 4a0812dfe9
6 changed files with 28 additions and 18 deletions

View File

@@ -9,23 +9,20 @@
<p>
<b>{{ _("Batch:") }}</b> {{ title }}
</p>
<br>
<p>
<b>{{ _("Start Date:") }}</b> {{ frappe.utils.format_date(start_date, "medium") }}
<b>{{ _("Start Date:") }}</b> {{ frappe.utils.format_date(start_date, "long") }}
</p>
<br>
<p>
<b>{{ _("Timings:") }}</b> {{ frappe.utils.format_time(start_time, "hh:mm a") }}
</p>
<br>
<p>
<b>{{ _("Medium:") }}</b> {{ medium }}
</p>
<br>
<p>
{{ _("Visit the following link to view your ") }}
<a href="/lms/batches/{{ name }}">{{ _("Batch Details") }}</a>
<a href="/lms/batches/{{ name }}">👉 {{ _("Visit your batch") }}</a>
</p>
<br>
<p>
{{ _("If you have any questions or require assistance, feel free to contact us.") }}
</p>

View File

@@ -9,19 +9,17 @@
<p>
<b>{{ _("Class:") }}</b> {{ title }}
</p>
<br>
<p>
<b>{{ _("Date:") }}</b> {{ frappe.utils.format_date(date, "medium") }}
<b>{{ _("Date:") }}</b> {{ frappe.utils.format_date(date, "long") }}
</p>
<br>
<p>
<b>{{ _("Timings:") }}</b> {{ frappe.utils.format_time(time, "hh:mm a") }}
</p>
<br>
<p>
{{ _("Visit the following link to view your ") }}
<a href="/lms/live_classes/{{ batch_name }}">{{ _("Batch Details") }}</a>
<a href="/lms/batches/{{ batch_name }}">👉 {{ _("Visit your batch") }}</a>
</p>
<br>
<p>
{{ _("If you have any questions or require assistance, feel free to contact us.") }}
</p>