Set Content-Type for contact emails

This commit is contained in:
Jan-Lukas Else 2022-04-05 19:48:07 +02:00
parent 92172d6404
commit 0af387930d
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ func (*goBlog) sendContactEmail(cc *configContact, body, replyTo string) error {
// Build email
email := bufferpool.Get()
defer bufferpool.Put(email)
_, _ = email.WriteString("Content-Type: text/plain; charset=UTF-8\n")
_, _ = fmt.Fprintf(email, "To: %s\n", cc.EmailTo)
if replyTo != "" {
_, _ = fmt.Fprintf(email, "Reply-To: %s\n", replyTo)