Go语言通过smtp发送邮件的方法
本文实例讲述了go语言通过smtp发送邮件的方法。分享给大家供大家参考。具体实现方法如下:
import (
"net/smtp"
"fmt"
"strings"
)
/*
* user : example@example.com login smtp server user
* password: xxxxx login smtp server password
* host: smtp.example.com:port smtp.163.com:25
* to: example@example.com;example1@163.com;example2@sina.com.cn;...
* subject:the subject of mail
* body: the content of mail
* mailtyoe: mail type html or text
*/
func sendmail(user, password, host, to, subject, body, mailtype string) error{
hp := strings.split(host, ":")
auth := smtp.plainauth("", user, password, hp[0])
var content_type string
if mailtype == "html" {
content_type = "content-type: text/"+ mailtype + "; charset=utf-8"
}else{
content_type = "content-type: text/plain" + "; charset=utf-8"
}
msg := []byte("to: " + to + "\r\nfrom: " + user + "<"+ user +">\r\nsubject: " + subject + "\r\n" + content_type + "\r\n\r\n" + body)
send_to := strings.split(to, ";")
err := smtp.sendmail(host, auth, user, send_to, msg)
return err
}
func main() {
user := "xxxx@163.com"
password := "xxxx"
host := "smtp.163.com:25"
to := "xxxx@gmail.com;ssssss@gmail.com"
subject := "test send email by golang"
body := `
<html>
<body>
<h3>
"test send email by golang"
</h3>
</body>
</html>
`
fmt.println("send email")
err := sendmail(user, password, host, to, subject, body, "html")
if err != nil {
fmt.println("send mail error!")
fmt.println(err)
}else{
fmt.println("send mail success!")
}
}
希望本文所述对大家的go语言程序设计有所帮助。