mailgun

package
v0.0.0-...-98cd694 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 29, 2024 License: Unlicense Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (

	// ErrNilConfig indicates an empty API token was provided.
	ErrNilConfig = errors.New("mailgun config is nil")
	// ErrEmptyDomain indicates an empty API token was provided.
	ErrEmptyDomain = errors.New("empty domain")
	// ErrEmptyPrivateAPIKey indicates an empty API token was provided.
	ErrEmptyPrivateAPIKey = errors.New("empty API token")
	// ErrNilHTTPClient indicates a nil HTTP client was provided.
	ErrNilHTTPClient = errors.New("nil HTTP client")
)

Functions

This section is empty.

Types

type Config

type Config struct {
	PrivateAPIKey string `json:"privateAPIKey" toml:"private_api_key,omitempty"`
	Domain        string `json:"domain"        toml:"domain,omitempty"`
}

Config configures Mailgun to send email.

type Emailer

type Emailer struct {
	// contains filtered or unexported fields
}

Emailer uses Mailgun to send email.

func NewMailgunEmailer

func NewMailgunEmailer(cfg *Config, logger logging.Logger, tracerProvider tracing.TracerProvider, client *http.Client) (*Emailer, error)

NewMailgunEmailer returns a new Mailgun-backed Emailer.

func (*Emailer) SendEmail

func (e *Emailer) SendEmail(ctx context.Context, details *email.OutboundEmailMessage) error

SendEmail sends an email.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL