git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/email/mailer.go (about) 1 package email 2 3 import "context" 4 5 // Mailer is the interface defining a service which sends emails 6 type Mailer interface { 7 SendTransactionnal(ctx context.Context, email Email) error 8 SendBroadcast(ctx context.Context, email Email) error 9 }