mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:00:55 +00:00
20 lines
623 B
Go
20 lines
623 B
Go
// Beego (http://beego.me/)
|
|
// @description beego is an open-source, high-performance web framework for the Go programming language.
|
|
// @link http://github.com/astaxie/beego for the canonical source repository
|
|
// @license http://github.com/astaxie/beego/blob/master/LICENSE
|
|
// @authors astaxie
|
|
|
|
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)
|
|
}
|