25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
750 B
27 lines
750 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") == "dingtalk" {
|
|
dingtalk := NewDingtalk(conf)
|
|
err := dingtalk.Send(title, msg)
|
|
return err
|
|
}
|
|
//邮件发送
|
|
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
|
|
}
|
|
|