mirror of
https://github.com/documenso/documenso.git
synced 2025-11-16 09:41:35 +10:00
51 lines
2.3 KiB
TypeScript
51 lines
2.3 KiB
TypeScript
import { sendMail } from "./sendMail";
|
|
import { NEXT_PUBLIC_WEBAPP_URL } from "@documenso/lib/constants";
|
|
|
|
export const sendSignedMail = async (recipient: any, document: any) => {
|
|
// todo check if recipient has an account
|
|
await sendMail(
|
|
document.User.email,
|
|
`${recipient.email} signed "${document.title}"`,
|
|
`
|
|
<div style="background-color: #eaeaea; padding: 2%;">
|
|
<div style="text-align:center; margin: auto; font-size: 14px; font-color: #353434; max-width: 500px; border-radius: 0.375rem; background: white; padding: 50px">
|
|
<img src="${NEXT_PUBLIC_WEBAPP_URL}/logo_h.png" alt="Documenso Logo" style="width: 180px; display: block; margin: auto; margin-bottom: 14px;
|
|
}">
|
|
${document.User.name || recipient.email} has signed your document ${
|
|
document.title
|
|
}.
|
|
<p style="margin: 30px;">
|
|
<a href="${NEXT_PUBLIC_WEBAPP_URL}/documents/${
|
|
document.id
|
|
}" style="background-color: #37f095; color: white; border-color: transparent; border-width: 1px; border-radius: 0.375rem; font-size: 18px; padding-left: 16px; padding-right: 16px; padding-top: 10px; padding-bottom: 10px; text-decoration: none; margin-top: 4px; margin-bottom: 4px;">
|
|
View Document
|
|
</a>
|
|
</p>
|
|
<hr size="1" style="height:1px;border:none;color:#e0e0e0;background-color:#e0e0e0">
|
|
Click the button to view ${document.title}.<br>
|
|
<small>If you have questions about this document, your should ask ${
|
|
document.User.name
|
|
}.</small>
|
|
<hr size="1" style="height:1px;border:none;color:#e0e0e0;background-color:#e0e0e0">
|
|
</div>
|
|
|
|
<div style="text-align: left; line-height: 18px; color: #666666; margin: 24px">
|
|
<div>
|
|
<b>Do not forward.</b>
|
|
<br>
|
|
This email contains a link to a secure document. Keep it secret and do not forward this email.
|
|
</div>
|
|
<div style="margin-top: 12px">
|
|
<b>Need help?</b>
|
|
<br>
|
|
Contact us at <a href="mailto:hi@documenso.com">hi@documenso.com</a>
|
|
</div>
|
|
<hr size="1" style="height: 1px; border: none; color: #D8D8D8; background-color: #D8D8D8">
|
|
<div style="text-align: center">
|
|
<small>Easy and beautiful document signing by Documenso.</small>
|
|
</div>
|
|
</div>
|
|
`
|
|
);
|
|
};
|