package domain // EmailService defines the interface for sending emails. type EmailService interface { SendEmail(to, subject, body string) error }