This commit is contained in:
aozhiwei 2024-04-13 15:43:10 +08:00
parent 8b32ce6c89
commit 6b2fc69d6e

View File

@ -19,6 +19,7 @@ type mail struct {
sendTime int32 sendTime int32
expireTime int32 expireTime int32
attachments []*attachment attachments []*attachment
addresses map[string]int32
} }
func (this *mail) Init() { func (this *mail) Init() {
@ -26,7 +27,7 @@ func (this *mail) Init() {
} }
func newMail() *mail { func newMail() *mail {
m := new(mail) p := new(mail)
m.Init() p.Init()
return m return p
} }