2025-10-02 16:16:33 +00:00
|
|
|
package repository
|
|
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
|
|
type MailRepository interface {
|
|
|
|
|
// SendMail 送出 Email
|
|
|
|
|
SendMail(ctx context.Context, req MailReq) error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MailReq struct {
|
2025-11-08 06:37:41 +00:00
|
|
|
To []string
|
|
|
|
|
From string
|
|
|
|
|
Subject string
|
|
|
|
|
Body string
|
|
|
|
|
SenderName string
|
2025-10-02 16:16:33 +00:00
|
|
|
}
|