Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
21 righe
550 B
21 righe
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
|
|
}
|