mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-09 15:32:54 +01:00
Typos
This commit is contained in:
parent
7266155cf4
commit
810babb379
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
// Package auth implements the LOGIN and MD5-DIGEST smtp authentication mechansims
|
// Package auth implements the LOGIN and MD5-DIGEST smtp authentication mechanisms
|
||||||
package auth
|
package auth
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -21,7 +21,7 @@ func main() {
|
||||||
|
|
||||||
m := mail.NewMsg()
|
m := mail.NewMsg()
|
||||||
if err := m.From(fa); err != nil {
|
if err := m.From(fa); err != nil {
|
||||||
fmt.Printf("failed to set FROM addres: %s", err)
|
fmt.Printf("failed to set FROM address: %s", err)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
if err := m.To(toa); err != nil {
|
if err := m.To(toa); err != nil {
|
||||||
|
|
Loading…
Reference in a new issue