You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package service |
|
|
|
import "gopkg.in/gomail.v2" |
|
|
|
// SendMail Send Mail. |
|
func (s *Service) SendMail(receiver []string, header, body string) { |
|
m := gomail.NewMessage() |
|
m.SetHeader("To", receiver...) |
|
m.SetHeader("Subject", header) |
|
m.SetBody("text/html", body) |
|
s.dao.SendMail(m) |
|
}
|
|
|