前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Go语言通过smtp发送邮件的示例代码

Go语言通过smtp发送邮件的示例代码

原创
作者头像
大师级码师
修改2021-11-02 10:57:14
7490
修改2021-11-02 10:57:14
举报
文章被收录于专栏:大师级码师
代码语言:javascript
复制
package main
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!")
}


}</pre> 

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档