emailx

package
v0.3.8 Latest Latest
Warning

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

Go to latest
Published: Nov 18, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Conf

type Conf struct {
	To       string `json:"to"`       // 收件人:多个以英文逗号分隔 例:a@qq.com b@qq.com 正式开发中请把此项目作为参数使用
	From     string `json:"from"`     // 发件人  你自己要发邮件的邮箱
	Host     string `json:"host"`     // 服务器地址 例如 smtp.qq.com  请前往QQ或者你要发邮件的邮箱查看其smtp协议
	Secret   string `json:"secret"`   // 密钥    用于登录的密钥 最好不要用邮箱密码 去邮箱smtp申请一个用于登录的密钥
	Nickname string `json:"nickname"` // 昵称    发件人昵称 通常为自己的邮箱
	Port     int    `json:"port"`     // 端口     请前往QQ或者你要发邮件的邮箱查看其smtp协议 大多为 465
	IsSSL    bool   `json:"is-ssl"`   // 是否SSL   是否开启SSL
}

type EmailClient

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

func NewClient

func NewClient(conf Conf) *EmailClient

func (*EmailClient) Send

func (x *EmailClient) Send(to []string, subject string, body string) error

Jump to

Keyboard shortcuts

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