蒋吉兆
3 years ago
9 changed files with 187 additions and 26 deletions
-
28server/plugin/email/README.MD
-
19server/plugin/email/api/sys_email.go
-
7server/plugin/email/model/response/email.go
-
4server/plugin/email/router/sys_email.go
-
13server/plugin/email/service/sys_email.go
-
43server/plugin/notify/README.MD
-
49server/plugin/notify/api/api.go
-
21server/plugin/notify/model/response/notify.go
-
29server/plugin/notify/service/notify.go
@ -0,0 +1,7 @@ |
|||||
|
package response |
||||
|
|
||||
|
type Email struct { |
||||
|
To string `json:"to"` // 邮件发送给谁
|
||||
|
Subject string `json:"subject"` // 邮件标题
|
||||
|
Body string `json:"body"` // 邮件内容
|
||||
|
} |
@ -0,0 +1,21 @@ |
|||||
|
package response |
||||
|
|
||||
|
type TextNotify struct { // 文字信息
|
||||
|
Content string `json:"content"` // 发送的内容
|
||||
|
AtMobiles []string `json:"atMobiles"` // 需要艾特的人的手机号
|
||||
|
IsAtAll bool `json:"isAtAll"` // 是否艾特全体
|
||||
|
} |
||||
|
|
||||
|
type LinkNotify struct { // 图文链接信息
|
||||
|
Content string `json:"content"` // 发送的内容
|
||||
|
Title string `json:"title"` // 内容标题
|
||||
|
PicUrl string `json:"picUrl"` // 配图
|
||||
|
MessageUrl string `json:"messageUrl"` // 点击跳转路径
|
||||
|
} |
||||
|
|
||||
|
type MarkdownNotify struct { // markdown信息
|
||||
|
Title string `json:"title"` // 内容标题
|
||||
|
Content string `json:"content"` // 发送的内容
|
||||
|
AtMobiles []string `json:"atMobiles"` // 需要艾特的人的手机号
|
||||
|
IsAtAll bool `json:"isAtAll"` // 是否艾特全体
|
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue