parent
707e81ecee
commit
ed0214dc63
12
README.md
12
README.md
|
@ -32,13 +32,14 @@ https://godoc.org/gopkg.in/gomail.v1
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
package main
|
```go
|
||||||
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gopkg.in/gomail.v1"
|
"gopkg.in/gomail.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
msg := gomail.NewMessage()
|
msg := gomail.NewMessage()
|
||||||
msg.SetHeader("From", "alex@example.com")
|
msg.SetHeader("From", "alex@example.com")
|
||||||
msg.SetHeader("To", "bob@example.com", "cora@example.com")
|
msg.SetHeader("To", "bob@example.com", "cora@example.com")
|
||||||
|
@ -57,7 +58,8 @@ https://godoc.org/gopkg.in/gomail.v1
|
||||||
if err := mailer.Send(msg); err != nil {
|
if err := mailer.Send(msg); err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Contact
|
## Contact
|
||||||
|
|
Loading…
Reference in New Issue