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
expireTime int32
attachments []*attachment
addresses map[string]int32
}
func (this *mail) Init() {
@ -26,7 +27,7 @@ func (this *mail) Init() {
}
func newMail() *mail {
m := new(mail)
m.Init()
return m
p := new(mail)
p.Init()
return p
}