Updated code for the email signature while sending emails
This commit is contained in:
@@ -1652,6 +1652,28 @@
|
||||
<column name="internal_note" type="TEXT"></column>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="31-10-2024_1" author="Rajesh Khore">
|
||||
<addColumn tableName="hub">
|
||||
<column name="EMAIL_SIGNATURE" type="TEXT"/>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="31-10-2024_2" author="Rajesh Khore">
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/updated_system_email_template_for_application_submition_30-10-2024.sql"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="31-10-2024_3" author="Rajesh Khore">
|
||||
<update tableName="hub">
|
||||
<column name="EMAIL_SIGNATURE" value="Gepafin S.p.a"/>
|
||||
<where>UNIQUE_UUID = 'p4lk3bcx1RStqTaIVVbXs'</where>
|
||||
</update>
|
||||
<update tableName="hub">
|
||||
<column name="EMAIL_SIGNATURE" value="Sviluppumbria S.p.a"/>
|
||||
<where>UNIQUE_UUID = 't7jh5wfg9QXylNaTZkPoE'</where>
|
||||
</update>
|
||||
</changeSet>
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
UPDATE gepafin_schema.system_email_template SET html_content='<html>
|
||||
<body style="font-family: Arial, sans-serif; color: #333; line-height: 1.6;">
|
||||
<div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;">
|
||||
<p>Buongiorno,</p>
|
||||
<p>
|
||||
Si comunica che, in riferimento alla domanda di concessione di
|
||||
Finanziamento agevolato a valere sul Fondo prestiti
|
||||
<strong>{{call_name}}</strong> di cui all''oggetto, la stessa è stata
|
||||
regolarmente acquisita ed è stata registrata con Protocollo n.
|
||||
<strong>{{protocol_number}}</strong> del <strong>{{date}}</strong> alle
|
||||
<strong>{{time}}</strong>.
|
||||
</p>
|
||||
<p>Distinti Saluti,</p>
|
||||
<p>
|
||||
<strong>{{email_signature}}</strong>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>' WHERE "type"='APPLICATION_SUBMISSION_TO_USER_AND_COMPANY' AND "system"=true ;
|
||||
|
||||
|
||||
UPDATE gepafin_schema.system_email_template SET html_content='<html>
|
||||
<body style="font-family: Arial, sans-serif; color: #333; line-height: 1.6;">
|
||||
<div style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; max-width: 600px; margin: auto;">
|
||||
<p>
|
||||
In riferimento alla domanda di concessione di Finanziamento agevolato a valere sul Fondo prestiti
|
||||
<strong>{{call_name}}</strong> di cui all’oggetto, la stessa è stata regolarmente acquisita ed è stata
|
||||
registrata con Protocollo n. <strong>{{protocol_number}}</strong> del <strong>{{date}}</strong> alle <strong>{{time}}</strong>.
|
||||
</p>
|
||||
<p>Distinti Saluti,</p>
|
||||
<p>
|
||||
<strong>{{email_signature}}</strong>
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>' WHERE "type"='APPLICATION_SUBMISSION_TO_GEPAFIN' AND "system"=true;
|
||||
|
||||
Reference in New Issue
Block a user