Last active
July 21, 2016 01:47
-
-
Save johnsonz/9e13053d74ef32ffa5ae0d43b5967e38 to your computer and use it in GitHub Desktop.
使用go来发送邮件
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 "gopkg.in/gomail.v2" | |
func main() { | |
m := gomail.NewMessage() | |
m.SetHeader("From", "[email protected]") | |
m.SetHeader("To", "[email protected]", "[email protected]") | |
m.SetAddressHeader("Cc", "[email protected]", "Dan") | |
m.SetHeader("Subject", "Hello!") | |
m.SetBody("text/html", "Hello <b>Bob</b> and <i>Cora</i>!") | |
m.Attach("/home/Alex/lolcat.jpg") | |
d := gomail.NewDialer("smtp.gmail.com", 465, "[email protected]", "123456") | |
// Send the email to Bob, Cora and Dan. | |
if err := d.DialAndSend(m); err != nil { | |
panic(err) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment