12 lines
299 B
Go
12 lines
299 B
Go
package mailgun
|
|
|
|
import "context"
|
|
|
|
type Emailer interface {
|
|
Send(ctx context.Context, sender, subject, recipient, htmlContent string) error
|
|
GetSenderEmail() string
|
|
GetDomainName() string // Deprecated
|
|
GetBackendDomainName() string
|
|
GetFrontendDomainName() string
|
|
GetMaintenanceEmail() string
|
|
}
|