This commit is contained in:
2025-05-21 21:29:04 +00:00
parent ca111f4783
commit 2564d0874b
2 changed files with 264 additions and 19 deletions

View File

@ -151,6 +151,7 @@ export class Email {
if (!input) return '';
// Remove CR and LF characters to prevent header injection
// But preserve all other special characters including Unicode
return input.replace(/\r|\n/g, ' ');
}