mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
nodemailer and sendgrid integration
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
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.`
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user