You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
550 B
21 lines
550 B
package service
|
|
|
|
import "github.com/unknwon/goconfig"
|
|
|
|
func SendMessage(conf *goconfig.ConfigFile,title,msg string) error {
|
|
if conf.MustValue("messenger","enable","false")=="true" {
|
|
//邮件发送
|
|
if conf.MustValue("messenger","type","none")=="smtp" {
|
|
email:=NewEmail(conf)
|
|
err:=email.Send([]string{conf.MustValue("messenger","email","")},title,msg)
|
|
return err
|
|
}
|
|
//Server酱推送
|
|
if conf.MustValue("messenger","type","none")=="wechat" {
|
|
wechat:=NewWechat(conf)
|
|
err:=wechat.Send(title,msg)
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|