Skip to content

Commit

Permalink
fix e-mail sender and remove compose example (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
goenning authored Sep 27, 2017
1 parent 0c7f5d9 commit ad245b5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 47 deletions.
2 changes: 1 addition & 1 deletion app/pkg/email/smtp/smtp.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ func (s *Sender) Send(from, to, subject, message string) error {

servername := fmt.Sprintf("%s:%s", s.host, s.port)
auth := gosmtp.PlainAuth("", s.username, s.password, s.host)
return gosmtp.SendMail(servername, auth, from, []string{to}, []byte(body))
return gosmtp.SendMail(servername, auth, email.NoReply, []string{to}, []byte(body))
}
46 changes: 0 additions & 46 deletions docs/docker-compose.yml

This file was deleted.

0 comments on commit ad245b5

Please sign in to comment.