import { NEXT_PUBLIC_WEBAPP_URL } from "../constants"; import { Document as PrismaDocument } from "@prisma/client"; import { baseEmailTemplate } from "./baseTemplate"; export const signingRequestTemplate = ( message: string, document: any, recipient: any, ctaLink: string, ctaLabel: string, user: any ) => { const customContent = `

${ctaLabel}

Want to send you own signing links? Create your own acccount.


Click the button to view "${document.title}".
If you have questions about this document, you should ask ${user.name}.
`; const html = baseEmailTemplate(message, customContent); return html; }; export default signingRequestTemplate;