sender

package
v2.1.4 Latest Latest
Warning

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

Go to latest
Published: May 21, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Package sender provides email sender

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Email

type Email struct {
	EmailParams
	logger.L
	// contains filtered or unexported fields
}

Email implements sender interface for VerifyHandler Uses common subject line and "from" for all messages

func NewEmailClient

func NewEmailClient(emailParams EmailParams, l logger.L) *Email

NewEmailClient creates email client

func (*Email) Send

func (e *Email) Send(to, text string) error

Send email with given text. The body is not logged: confirmation emails sent by the verify provider contain a one-shot magic-link token, and any party with log access could redeem it before the user does. Logging only the recipient and body length keeps the line useful for operators without leaking the credential.

type EmailParams

type EmailParams struct {
	Host        string // SMTP host
	Port        int    // SMTP port
	From        string // from email field
	Subject     string // email subject
	ContentType string // content type

	TLS                bool          // TLS auth
	StartTLS           bool          // startTLS auth
	InsecureSkipVerify bool          // skip certificate verification
	Charset            string        // character set
	LoginAuth          bool          // LOGIN auth method instead of default PLAIN, needed for Office 365 and outlook.com
	SMTPUserName       string        // username
	SMTPPassword       string        // password
	TimeOut            time.Duration // TCP connection timeout
}

EmailParams with all needed to make new Email client with smtp

Jump to

Keyboard shortcuts

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