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

This commit is contained in:
joyexpr 2021-04-19 23:57:20 +08:00 committed by GitHub
parent a5197b4ced
commit 41efc66d25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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)