email.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package utils
  2. import (
  3. "crypto/tls"
  4. "strings"
  5. "gopkg.in/gomail.v2"
  6. )
  7. // 发送邮件
  8. func SendEmail(title, content string, touser string) bool {
  9. var arr []string
  10. sub := strings.Index(touser, ";")
  11. if sub >= 0 {
  12. spArr := strings.Split(touser, ";")
  13. for _, v := range spArr {
  14. arr = append(arr, v)
  15. }
  16. } else {
  17. arr = append(arr, touser)
  18. }
  19. m := gomail.NewMessage()
  20. m.SetHeader("From", "")
  21. m.SetHeader("To", arr...)
  22. m.SetHeader("Subject", title+" "+GetRandString(16))
  23. m.SetBody("text/html", content)
  24. d := gomail.NewDialer("smtp.qq.com", 587, "", "")
  25. if err := d.DialAndSend(m); err != nil {
  26. return false
  27. }
  28. return true
  29. }
  30. // 发送邮件
  31. func SendEmailByDw(title, content string, touser string) (result bool, err error) {
  32. var arr []string
  33. sub := strings.Index(touser, ";")
  34. if sub >= 0 {
  35. spArr := strings.Split(touser, ";")
  36. arr = append(arr, spArr...)
  37. // for _, v := range spArr {
  38. // arr = append(arr, v)
  39. // }
  40. } else {
  41. arr = append(arr, touser)
  42. }
  43. m := gomail.NewMessage()
  44. m.SetHeader("From", "lvan@dwqh88.com")
  45. m.SetHeader("To", arr...)
  46. m.SetHeader("Subject", title)
  47. m.SetBody("text/html", content)
  48. d := gomail.NewDialer("mail.dwqh88.com", 465, "lvan@dwqh88.com", "Dwqh20248888")
  49. d.TLSConfig = &tls.Config{InsecureSkipVerify: true}
  50. if err := d.DialAndSend(m); err != nil {
  51. result = false
  52. return result, err
  53. }
  54. result = true
  55. return
  56. }