模块介绍

https://gopkg.in/gomail.v2

使用 gomail.v2 进行发送邮件。

方法说明

方法 说明
mail.Send(o *Options) 发送邮件

测试用例

  1. func TestSend(t *testing.T) {
  2. options := &Options{
  3. MailHost: "smtp.163.com",
  4. MailPort: 465,
  5. MailUser: "xxx@163.com",
  6. MailPass: "", //密码或授权码
  7. MailTo: "",
  8. Subject: "subject",
  9. Body: "body",
  10. }
  11. err := Send(options)
  12. if err != nil {
  13. t.Error("Mail Send error", err)
  14. return
  15. }
  16. t.Log("success")
  17. }