模块介绍
方法说明
方法 | 说明 |
---|---|
mail.Send(o *Options) | 发送邮件 |
测试用例
func TestSend(t *testing.T) {
options := &Options{
MailHost: "smtp.163.com",
MailPort: 465,
MailUser: "xxx@163.com",
MailPass: "", //密码或授权码
MailTo: "",
Subject: "subject",
Body: "body",
}
err := Send(options)
if err != nil {
t.Error("Mail Send error", err)
return
}
t.Log("success")
}