Skip to content

Commit

Permalink
fix(smtp): remove extra semi in mime header (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
piksel authored Sep 4, 2021
1 parent 441d5cf commit b1a59a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/services/smtp/smtp.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func (service *Service) getHeaders(toAddress string, subject string) map[string]
"Date": time.Now().Format(time.RFC1123Z),
"To": toAddress,
"From": fmt.Sprintf("%s <%s>", conf.FromName, conf.FromAddress),
"MIME-version": "1.0;",
"MIME-version": "1.0",
"Content-Type": contentType,
}
}
Expand Down

0 comments on commit b1a59a7

Please sign in to comment.