import { NEXT_PUBLIC_WEBAPP_URL } from "../constants"; import { User } from "@prisma/client"; export const resetPasswordSuccessTemplate = (user: User) => { return `
Documenso Logo

Password updated!

Hi ${user.name ? user.name : user.email},

We've changed your password as you asked. You can now sign in with your new password.

Didn't request a password change? We are here to help you secure your account, just contact us.

The Documenso Team

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

Need help?
Contact us at hi@documenso.com

Easy and beautiful document signing by Documenso.
`; }; export default resetPasswordSuccessTemplate;