generated from VLADIMIR/template
14 lines
195 B
Go
14 lines
195 B
Go
package email_sender
|
|
|
|
import "context"
|
|
|
|
type Message struct {
|
|
To string
|
|
Subject string
|
|
Body string
|
|
}
|
|
|
|
type IEmailSender interface {
|
|
Send(ctx context.Context, message Message) error
|
|
}
|