未验证 提交 41efc66d 编写于 作者: J joyexpr 提交者: GitHub

fix: send mail not work(wrong notifyType and subject) (#660)

上级 a5197b4c
......@@ -420,8 +420,8 @@ func send(tos []string, content, subject, notifyType string) error {
return fmt.Errorf("content is blank")
}
if notifyType == "email" {
message.Subject = strings.TrimSpace(message.Subject)
if notifyType == "mail" {
message.Subject = strings.TrimSpace(subject)
if message.Subject == "" {
return fmt.Errorf("subject is blank")
}
......@@ -432,7 +432,7 @@ func send(tos []string, content, subject, notifyType string) error {
redisc.Write(&message, cron.VOICE_QUEUE_NAME)
case "sms":
redisc.Write(&message, cron.SMS_QUEUE_NAME)
case "email":
case "mail":
redisc.Write(&message, cron.MAIL_QUEUE_NAME)
case "im":
redisc.Write(&message, cron.IM_QUEUE_NAME)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册