diff --git a/lib/emails/helpers.ts b/lib/emails/helpers.ts index 929a0556..7c778ce4 100644 --- a/lib/emails/helpers.ts +++ b/lib/emails/helpers.ts @@ -27,7 +27,7 @@ export function getFormattedMeetingId(videoCallData: VideoCallData): string { export function stripHtml(html: string): string { const aLinkRegExp = /"]*)"[\s\w="_:#;]*>([^<>]*)<\/a>/g; return html - .replace("
", "\n") + .replace(//g, "\n") .replace(aLinkRegExp, "$2: $1") .replace(/<[^>]+>/g, ""); }