send emails in unicode, fixes #31

This commit is contained in:
Aine
2022-09-22 22:23:47 +03:00
parent 90927247fd
commit 7473ed9450
2 changed files with 5 additions and 0 deletions

View File

@@ -51,6 +51,7 @@ func NewServer(cfg *Config) *Server {
s.WriteTimeout = 10 * time.Second
s.MaxMessageBytes = cfg.MaxSize * 1024 * 1024
s.EnableREQUIRETLS = cfg.TLSRequired
s.EnableSMTPUTF8 = true
if log.GetLevel() == "DEBUG" || log.GetLevel() == "TRACE" {
s.Debug = os.Stdout
}