mirror of
https://github.com/Jinnrry/PMail.git
synced 2026-04-23 00:17:16 +08:00
054336fe9e
1、新增垃圾邮件过滤插件 2、使用使用github.com/dlclark/regexp2替换go原生的正则包 3、修复空数据导致的邮件插入失败
9 lines
161 B
Go
9 lines
161 B
Go
package response
|
|
|
|
import "github.com/Jinnrry/pmail/models"
|
|
|
|
type EmailResponseData struct {
|
|
models.Email `xorm:"extends"`
|
|
IsRead int8 `json:"is_read"`
|
|
}
|