mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
10 lines
323 B
TypeScript
10 lines
323 B
TypeScript
import { sendMail } from "./sendMail";
|
|
|
|
export const sendSigningRequestMail = async (recipient: any, document: any) => {
|
|
sendMail(
|
|
recipient.email,
|
|
`Please sign ${document.title}`,
|
|
`${document.user.name} has sent you a document to sign. Click <b><a href="https">SIGN DOCUMENT</a></b> to sign it now.`
|
|
);
|
|
};
|