13 lines
379 B
Go
13 lines
379 B
Go
// File Path: monorepo/cloud/maplefile-backend/pkg/emailer/mailgun/interface.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
|
|
}
|