2014-04-12 05:18:18 +00:00
|
|
|
// Beego (http://beego.me/)
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-04-12 05:18:18 +00:00
|
|
|
// @authors astaxie
|
2014-01-08 14:31:26 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
|
|
|
func TestMail(t *testing.T) {
|
|
|
|
config := `{"username":"astaxie@gmail.com","password":"astaxie","host":"smtp.gmail.com","port":587}`
|
|
|
|
mail := NewEMail(config)
|
|
|
|
if mail.Username != "astaxie@gmail.com" {
|
|
|
|
t.Fatal("email parse get username error")
|
|
|
|
}
|
|
|
|
if mail.Password != "astaxie" {
|
|
|
|
t.Fatal("email parse get password error")
|
|
|
|
}
|
|
|
|
if mail.Host != "smtp.gmail.com" {
|
|
|
|
t.Fatal("email parse get host error")
|
|
|
|
}
|
|
|
|
if mail.Port != 587 {
|
|
|
|
t.Fatal("email parse get port error")
|
|
|
|
}
|
|
|
|
mail.To = []string{"xiemengjun@gmail.com"}
|
|
|
|
mail.From = "astaxie@gmail.com"
|
|
|
|
mail.Subject = "hi, just from beego!"
|
2014-01-08 14:35:42 +00:00
|
|
|
mail.Text = "Text Body is, of course, supported!"
|
|
|
|
mail.HTML = "<h1>Fancy Html is supported, too!</h1>"
|
|
|
|
mail.AttachFile("/Users/astaxie/github/beego/beego.go")
|
2014-01-08 14:31:26 +00:00
|
|
|
mail.Send()
|
|
|
|
}
|