import { NEXT_PUBLIC_WEBAPP_URL } from "../constants"; export const resetPasswordTemplate = (ctaLink: string, ctaLabel: string) => { const customContent = `

Forgot your password?

That's okay, it happens! Click the button below to reset your password.

${ctaLabel}

Want to send you own signing links? Hosted Documenso is here!.

`; const html = `
Documenso Logo ${customContent}
`; const footer = `
Need help?
Contact us at hi@documenso.com

Easy and beautiful document signing by Documenso.
`; return html + footer; }; export default resetPasswordTemplate;