mailer.go 105 B

12345
  1. package interfaces
  2. type Mailer interface {
  3. Send(recipient string, subject string, text string) error
  4. }