signinged request template

This commit is contained in:
Timur Ercan
2023-01-30 17:13:02 +01:00
parent 2424134713
commit 55163d4582
8 changed files with 62 additions and 64734 deletions

View File

@ -6,6 +6,6 @@ export const sendSignedMail = async (document: any, recipient: any) => {
await sendMail(
document.user.email,
`${recipient.email} signed ${document.title}`,
`Hi ${document.user.name}, ${recipient.email} has signed your document ${document.title}. Click <a href="${NEXT_PUBLIC_WEBAPP_URL}/document/${document.id}?token=${recipient.token}"> VIEW DOCUMENT</a> to view it now.`
`Hi ${document.user.name}, ${recipient.email} has signed your document ${document.title}. Click <a href="${NEXT_PUBLIC_WEBAPP_URL}/document/${document.id}}"> VIEW DOCUMENT</a> to view it now.`
);
};