More examples

This commit is contained in:
Winni Neessen 2022-03-12 15:42:40 +01:00
parent c41301e26b
commit 6bc9832ede
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -6,6 +6,28 @@ import (
"os" "os"
) )
// Code example for the NewClient method
func ExampleNewClient() {
c, err := mail.NewClient("mail.example.com")
if err != nil {
panic(err)
}
_ = c
// Output:
}
// Code example for the Client.SetTLSPolicy method
func ExampleClient_SetTLSPolicy() {
c, err := mail.NewClient("mail.example.com")
if err != nil {
panic(err)
}
c.SetTLSPolicy(mail.TLSMandatory)
fmt.Println(c.TLSPolicy())
// Output: TLSMandatory
}
// Code example for the Client.DialAndSend method
func ExampleClient_DialAndSend() { func ExampleClient_DialAndSend() {
from := "Toni Tester <toni@example.com>" from := "Toni Tester <toni@example.com>"
to := "Alice <alice@example.com>" to := "Alice <alice@example.com>"