1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 12:34:13 +00:00

sleep some time for send mail

This commit is contained in:
astaxie 2013-08-28 15:55:34 +08:00
parent 2424618163
commit 4922237847

View File

@ -2,10 +2,12 @@ package logs
import (
"testing"
"time"
)
func TestSmtp(t *testing.T) {
log := NewLogger(10000)
log.SetLogger("smtp", `{"username":"beegotest@gmail.com","password":"xxxxxxxx","host":"smtp.gmail.com:587","sendTos":["xiemengjun@gmail.com"]}`)
log.Critical("sendmail critical")
time.Sleep(time.Second * 30)
}