Dima c1444ec377 Add docs | 6 月之前 | |
---|---|---|
.. | ||
auth.go | 6 月之前 | |
readme.md | 6 月之前 | |
smtp.go | 6 月之前 | |
smtp_config.go | 6 月之前 |
client, err := smtp.NewSMTP(
smtp.NewConfig(
smtp.WithHost("smtp.example.com"),
smtp.WithUsername("username"),
smtp.WithPassword("password"),
smtp.WithPort(587),
),
)
if err != nil {
// TODO
}
err = client.Send(
"recipient@mail.com",
"email subject",
"email content",
false // is HTML content type
)