email.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package services
  2. import (
  3. "errors"
  4. "gopkg.in/gomail.v2"
  5. "hongze/hongze_yb_en_api/models/msg_code"
  6. "hongze/hongze_yb_en_api/utils"
  7. "strings"
  8. "time"
  9. )
  10. // SendEmailCode 发送邮件
  11. func SendEmailCode(name,email string) (err error, errMsg string) {
  12. if email == "" {
  13. err = errors.New("请输入邮箱地址")
  14. return
  15. }
  16. if !utils.ValidateEmailFormatat(email) {
  17. err = errors.New("邮箱格式错误,请重新输入")
  18. return
  19. }
  20. msgCode := utils.GetRandDigit(4)
  21. content := "Hi "+ name +":</br>Please enter this verification code on the registration page so we can make sure it's you:</br><p>" + msgCode + "</p>This code will expire in 15 minutes.</br>" +
  22. "If you didn't initiate this request, or need help with your registration, please let us know at: stephanie@hzinsights.com </br>Horizon Research Team"
  23. title := "Your Email Verification Code"
  24. //发送邮件
  25. result, err := SendEmailByHz(title, content, email)
  26. if result {
  27. item := &msg_code.MsgCode{
  28. Mobile: email,
  29. Code: msgCode,
  30. ExpiredIn: time.Now().Add(15 * time.Minute).Unix(),
  31. Enabled: 1,
  32. CreatedTime: time.Time{},
  33. LastUpdatedTime: time.Time{},
  34. }
  35. err = item.Create()
  36. } else {
  37. err = errors.New("发送失败")
  38. }
  39. return
  40. }
  41. //发送邮件
  42. func SendEmailByHz(title, content string, touser string) (result bool, err error) {
  43. var arr []string
  44. sub := strings.Index(touser, ";")
  45. if sub >= 0 {
  46. spArr := strings.Split(touser, ";")
  47. for _, v := range spArr {
  48. arr = append(arr, v)
  49. }
  50. } else {
  51. arr = append(arr, touser)
  52. }
  53. m := gomail.NewMessage()
  54. m.SetHeader("From", "public@hzinsights.com")
  55. m.SetHeader("To", arr...)
  56. m.SetHeader("Subject", title)
  57. m.SetBody("text/html", content)
  58. d := gomail.NewDialer("smtp.mxhichina.com", 465, "public@hzinsights.com", "Hzinsights2018")
  59. if err := d.DialAndSend(m); err != nil {
  60. result = false
  61. return result, err
  62. }
  63. result = true
  64. return
  65. }