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