Files
evening_detective_server/internal/modules/email_sender/interface.go
T
2026-08-20 03:27:26 +07:00

18 lines
449 B
Go

package email_sender
import "context"
type Message struct {
To string
Subject string
// Body — текстовая версия письма (text/plain).
Body string
// HTML — версия письма для почтовых клиентов (text/html).
// Если пусто, письмо уходит только в text/plain.
HTML string
}
type IEmailSender interface {
Send(ctx context.Context, message Message) error
}