主頁 > 知識庫 > Go語言通過smtp發(fā)送郵件的方法

Go語言通過smtp發(fā)送郵件的方法

熱門標(biāo)簽:旅游廁所如何電子地圖標(biāo)注 海外照相館地圖標(biāo)注入駐 外呼系統(tǒng)多少錢一年 經(jīng)常接到推銷電話機器人的電話 智能營銷軟件 客服級電銷機器人 工商信用卡外呼系統(tǒng)教程 外呼系統(tǒng)如何接收服務(wù)密碼 滁州自建外呼系統(tǒng)

本文實例講述了Go語言通過smtp發(fā)送郵件的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:

復(fù)制代碼 代碼如下:
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!")
 }
}

希望本文所述對大家的Go語言程序設(shè)計有所幫助。

您可能感興趣的文章:
  • golang實現(xiàn)通過smtp發(fā)送電子郵件的方法
  • go語言發(fā)送smtp郵件的實現(xiàn)示例

標(biāo)簽:楚雄 湘潭 晉城 九江 深圳 運城 喀什 本溪

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Go語言通過smtp發(fā)送郵件的方法》,本文關(guān)鍵詞  語言,通過,smtp,發(fā)送,郵件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Go語言通過smtp發(fā)送郵件的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于Go語言通過smtp發(fā)送郵件的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章