Golang SMTP电子邮件包
go get github.com/admpub/mail
import (
"fmt"
"github.com/admpub/mail"
"os"
)
func main() {
conf := &mail.SMTPConfig{
Username: "admpub",
Password: "",
Host: "smtp.admpub.com",
Port: 587,
Secure: "SSL",
}
c := mail.NewSMTPClient(conf)
m := mail.NewMail()
m.AddTo("[email protected]") //或 "老弟 <[email protected]>"
m.AddFrom("[email protected]") //或 "老哥 <[email protected]>"
m.AddSubject("Testing")
m.AddText("Some text :)")
filepath, _ := os.Getwd()
m.AddAttachment(filepath + "/mail.go")
if e := c.Send(m); e != nil {
fmt.Println(e)
} else {
fmt.Println("发送成功")
}
}