Semaphore/util/mail.go
tom whiston 17fa7bb407 add gometalinter to tools and run it in circle.
extract some error checking and logging in places where linting needed or errors not checked
2018-04-05 21:24:19 +00:00

49 lines
753 B
Go

package util
import (
"bytes"
"net/smtp"
log "github.com/Sirupsen/logrus"
"io"
)
// SendMail dispatches a mail using smtp
func SendMail(emailHost, mailSender, mailRecipient string, mail bytes.Buffer) error {
c, err := smtp.Dial(emailHost)
if err != nil {
return err
}
defer func (c *smtp.Client) {
err = c.Close()
if err != nil {
log.Error(err)
}
}(c)
// Set the sender and recipient.
err = c.Mail(mailSender)
if err != nil {
return err
}
err = c.Rcpt(mailRecipient)
if err != nil {
return err
}
// Send the email body.
wc, err := c.Data()
if err != nil {
return err
}
defer func (wc io.WriteCloser) {
err = wc.Close()
if err != nil {
log.Error(err)
}
}(wc)
_, err = mail.WriteTo(wc)
return err
}