-
-
Save night-codes/29f9372af9c8bd7e3e6f7aefaa06088d to your computer and use it in GitHub Desktop.
golang send mail net/smtp SMTP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
"net/mail" | |
"encoding/base64" | |
"net/smtp" | |
"fmt" | |
"strings" | |
) | |
func encodeRFC2047(String string) string{ | |
// use mail's rfc2047 to encode any string | |
addr := mail.Address{String, ""} | |
return strings.Trim(addr.String(), " <>") | |
} | |
func main() { | |
// Set up authentication information. | |
smtpServer := "smtp.163.com" | |
auth := smtp.PlainAuth( | |
"", | |
"[email protected]", | |
"password*******", | |
smtpServer, | |
) | |
from := mail.Address{"监控中心", "[email protected]"} | |
to := mail.Address{"收件人", "[email protected]"} | |
title := "当前时段统计报表" | |
body := "报表内容一切正常"; | |
header := make(map[string]string) | |
header["From"] = from.String() | |
header["To"] = to.String() | |
header["Subject"] = encodeRFC2047(title) | |
header["MIME-Version"] = "1.0" | |
header["Content-Type"] = "text/plain; charset=\"utf-8\"" | |
header["Content-Transfer-Encoding"] = "base64" | |
message := "" | |
for k, v := range header { | |
message += fmt.Sprintf("%s: %s\r\n", k, v) | |
} | |
message += "\r\n" + base64.StdEncoding.EncodeToString([]byte(body)) | |
// Connect to the server, authenticate, set the sender and recipient, | |
// and send the email all in one step. | |
err := smtp.SendMail( | |
smtpServer + ":25", | |
auth, | |
from.Address, | |
[]string{to.Address}, | |
[]byte(message), | |
//[]byte("This is the email body."), | |
) | |
if err != nil { | |
log.Fatal(err) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment