server/queue/types/email.go
Chang lue Tsen 8addcc584b init: 1.0.0
2025-04-25 12:08:29 +09:00

15 lines
251 B
Go

package types
const (
// ForthwithSendEmail forthwith send email
ForthwithSendEmail = "forthwith:email:send"
)
type (
SendEmailPayload struct {
Email string `json:"to"`
Subject string `json:"subject"`
Content string `json:"content"`
}
)