export const registerTemplate = "my html file" and made my html template through sendgrid.
import { registerTemplate } from './templates/register-template';
export const getVerificationEmailContent: GetVerificationEmailContentFn = ({ verificationLink }) => {
const html = registerTemplate.replace('{{verificationLink}}', verificationLink);
return {
subject: 'Welcome to myappname!',
html,
text: Please verify your email by clicking this link: ${verificationLink}
};