Semaphore/util/mail.go

49 lines
753 B
Go
Raw Normal View History

package util
import (
"bytes"
"net/smtp"
log "github.com/Sirupsen/logrus"
"io"
)
// SendMail dispatches a mail using smtp
2017-03-13 03:30:48 +01:00
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)
2017-04-18 16:36:09 +02:00
// 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)
2017-04-18 16:36:09 +02:00
_, err = mail.WriteTo(wc)
return err
}