chore: fix typo in error message

This commit is contained in:
Ferdinand Mütsch 2022-03-06 11:52:03 +01:00
parent ed6e51b4df
commit 965d8e22b3
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func (s *SMTPSendingService) Send(mail *models.Mail) error {
}
if len(s.config.Username) == 0 || len(s.config.Password) == 0 {
return errors.New("smtp: server requires authentification, but no authentification is provided")
return errors.New("smtp: server requires authentication, but no authentication is provided")
}
if err = c.Auth(s.auth); err != nil {