mailer

package
v1.1.0 Latest Latest
Warning

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

Go to latest
Published: Aug 26, 2023 License: GPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DefaultMailer

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

func New

func New(addr string, auth smtp.Auth, options ...DefaultMailerConfigurator) *DefaultMailer

func (*DefaultMailer) SendMail

func (m *DefaultMailer) SendMail(ctx context.Context, from string, to []string, subject string, body string) error

func (*DefaultMailer) String

func (m *DefaultMailer) String() string

type DefaultMailerConfigurator added in v1.1.0

type DefaultMailerConfigurator func(m *DefaultMailer)

func WithStartTLS added in v1.1.0

func WithStartTLS(v bool) DefaultMailerConfigurator

func WithTLS added in v1.1.0

func WithTLSConfig added in v1.1.0

func WithTLSConfig(cfg *tls.Config) DefaultMailerConfigurator

type DummyMailer

type DummyMailer struct {
	Messages []Message
}

DummyMailer is an implementation of Mailer that only adds the passed message into the internal Messages field.

func NewDummy

func NewDummy() *DummyMailer

NewDummy creates a new DummyMailer.

func (*DummyMailer) SendMail

func (m *DummyMailer) SendMail(ctx context.Context, from string, to []string, subject string, body string) error

type Mailer

type Mailer interface {
	SendMail(ctx context.Context, from string, to []string, subject string, body string) error
}

Mailer is something that can send out an email.

type Message

type Message struct {
	From    string
	To      []string
	Subject string
	Body    string
}

Message as it is stored by the DummyMailer when using its SendMail method.

Jump to

Keyboard shortcuts

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