12345678910111213141516171819202122232425262728293031323334353637383940 |
- package dao
- import (
- "os"
- "go-common/app/job/main/mcn/conf"
- "go-common/library/log"
- "gopkg.in/gomail.v2"
- )
- // SendMail send the email.
- func (d *Dao) SendMail(body string, subject string, send []string) (err error) {
- log.Info("send mail send:%v", send)
- msg := gomail.NewMessage()
- msg.SetHeader("From", conf.Conf.MailConf.Username)
- msg.SetHeader("To", send...)
- msg.SetHeader("Subject", subject)
- msg.SetBody("text/html", body, gomail.SetPartEncoding(gomail.Base64))
- if err = d.email.DialAndSend(msg); err != nil {
- log.Error("s.email.DialAndSend error(%v)", err)
- return
- }
- return
- }
- // SendMailAttach send the email.
- func (d *Dao) SendMailAttach(filename string, subject string, send []string) (err error) {
- msg := gomail.NewMessage()
- msg.SetHeader("From", conf.Conf.MailConf.Username)
- msg.SetHeader("To", send...)
- msg.SetHeader("Subject", subject)
- msg.Attach(filename)
- if err = d.email.DialAndSend(msg); err != nil {
- log.Error("s.email.DialAndSend error(%v)", err)
- return
- }
- err = os.Remove(filename)
- return
- }
|