fix: display german umlauts correctly in emails
parent
5bd3403928
commit
dfc372c644
|
@ -2,6 +2,8 @@ package escaper
|
|||
|
||||
import "strings"
|
||||
|
||||
// https://www.htmlsymbol.com/html-entities/
|
||||
|
||||
var htmlEntitesEscaper = strings.NewReplacer(
|
||||
`Ä`, "Ä",
|
||||
`ä`, "ä",
|
||||
|
|
Loading…
Reference in New Issue