Reminder mail to beneficiary
This commit is contained in:
@@ -1695,5 +1695,14 @@
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/insert_system_email_template_for_notification_mail_31_10_2024.sql"/>
|
||||
</changeSet>
|
||||
<changeSet id="30-10-2024_2" author="Harish Bagora">
|
||||
<sql dbms="postgresql">select
|
||||
setval('gepafin_schema.system_email_template_id_seq', (select
|
||||
max(id)+1
|
||||
from gepafin_schema.system_email_template), false)
|
||||
</sql>
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/insert_system_email_template_for_sollecito_30_10_2024.sql"/>
|
||||
|
||||
</changeSet>
|
||||
</databaseChangeLog>
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
-- SQL Dump to insert system email template for amendment reminder email with calculated due date
|
||||
INSERT INTO gepafin_schema.system_email_template
|
||||
(template_name, "type", html_content, subject, "json", "system", is_deleted, created_date, updated_date)
|
||||
VALUES
|
||||
(
|
||||
'Amendment Reminder Email',
|
||||
'AMENDMENT_REMINDER',
|
||||
'<html>
|
||||
<body style="font-family: Arial, sans-serif; color: #000; line-height: 1.6;">
|
||||
<div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;">
|
||||
<p><strong>PROMEMORIA PER LA PRESENTAZIONE DELL''EMENDAMENTO</strong></p>
|
||||
<p>Buongiorno,</p>
|
||||
<p>Questo è un promemoria per completare la presentazione dell''emendamento entro il termine specificato. Di seguito i dettagli:</p>
|
||||
<ul>
|
||||
<li><strong>Amendment ID:</strong> {{amendment_id}}</li>
|
||||
<li><strong>Data di Scadenza:</strong> {{amendment_due_date}}</li>
|
||||
</ul>
|
||||
<p>Si prega di assicurarsi che l''emendamento venga presentato entro la data di scadenza per evitare ritardi. Inviare l''emendamento tramite la piattaforma online <a href="{{platform_link}}">{{platform_link}}</a> </p>
|
||||
<p>Distinti saluti,</p>
|
||||
<p><strong>{{email_signature}}</strong></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>',
|
||||
'Reminder: Pending Amendment Submission - ID {{amendment_id}}',
|
||||
NULL,
|
||||
true,
|
||||
false,
|
||||
CURRENT_TIMESTAMP,
|
||||
CURRENT_TIMESTAMP);
|
||||
Reference in New Issue
Block a user