mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 06:50:54 +00:00
28 lines
799 B
Go
28 lines
799 B
Go
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!"
|
|
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")
|
|
mail.Send()
|
|
}
|