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 ¶
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
Click to show internal directories.
Click to hide internal directories.