From f6f7c6cecd790efd38bab66f13de3bc71faa1f00 Mon Sep 17 00:00:00 2001 From: prafull-opensignlabs Date: Fri, 17 May 2024 10:56:14 +0530 Subject: [PATCH] refactor: change in subject & body of resend mail --- apps/OpenSign/src/primitives/GetReportDisplay.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/OpenSign/src/primitives/GetReportDisplay.js b/apps/OpenSign/src/primitives/GetReportDisplay.js index 7721ee6cc..da26b2728 100644 --- a/apps/OpenSign/src/primitives/GetReportDisplay.js +++ b/apps/OpenSign/src/primitives/GetReportDisplay.js @@ -535,10 +535,10 @@ const ReportTable = (props) => { const subject = doc?.RequestSubject || - "{{sender_name}} has requested you to sign {{document_title}}"; + `{{sender_name}} has requested you to sign "{{document_title}}"`; const body = doc?.RequestBody || - "

Hi {{receiver_name}},


We hope this email finds you well. {{sender_name}} has requested you to review and sign {{document_title}}.

Your signature is crucial to proceed with the next steps as it signifies your agreement and authorization.


{{signing_url}}


If you have any questions or need further clarification regarding the document or the signing process, please contact the sender.


Thanks

Team OpenSign™


"; + `

Hi {{receiver_name}},


We hope this email finds you well. {{sender_name}} has requested you to review and sign "{{document_title}}".

Your signature is crucial to proceed with the next steps as it signifies your agreement and authorization.


{{signing_url}}


If you have any questions or need further clarification regarding the document or the signing process, please contact the sender.


Thanks

Team OpenSign™


`; const res = replaceMailVaribles(subject, body, variables); setMail((prev) => ({ ...prev, subject: res.subject, body: res.body })); setIsNextStep({ [user.objectId]: true }); @@ -959,7 +959,7 @@ const ReportTable = (props) => { @@ -985,7 +985,7 @@ const ReportTable = (props) => {