-
Notifications
You must be signed in to change notification settings - Fork 46
/
main.go
81 lines (70 loc) · 1.87 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// smtp + ssl (для Google - 500 сообщений в день)
package main
import (
"crypto/tls"
"fmt"
"log"
"net"
"net/mail"
"net/smtp"
)
func main() {
// от кого кому и что
from := mail.Address{Name: "gotestsmtp", Address: "[email protected]"}
to := mail.Address{Name: "gotest", Address: "[email protected]"}
body := "this is the body line1.\nthis is the body line2.\nthis is the body line3.\n"
subject := "Тестовое Golang"
// удаленный сервер Google (обязательно 587 порт) и данные аутотентификации
smtpserver := "smtp.gmail.com:587"
auth := smtp.PlainAuth("", "[email protected]", "PASSWORD", "smtp.gmail.com")
// установка заголовка письма
header := make(map[string]string)
header["From"] = from.String()
header["To"] = to.String()
header["Subject"] = subject
// для него тело письма
message := ""
for k, v := range header {
message += fmt.Sprintf("%s: %s\r\n", k, v)
}
message += "\r\n" + body
// коннект с SMTP сервером
c, err := smtp.Dial(smtpserver)
if err != nil {
log.Panic(err)
}
// без сертификата TLS Gmail не пропустит
host, _, _ := net.SplitHostPort(smtpserver)
tlc := &tls.Config{
InsecureSkipVerify: true,
ServerName: host,
}
if err = c.StartTLS(tlc); err != nil {
log.Panic(err)
}
// аутотентификация
if err = c.Auth(auth); err != nil {
log.Panic(err)
}
// отправка для КОГО и ЧТО
if err = c.Mail(from.Address); err != nil {
log.Panic(err)
}
if err = c.Rcpt(to.Address); err != nil {
log.Panic(err)
}
// Само письмо
w, err := c.Data()
if err != nil {
log.Panic(err)
}
_, err = w.Write([]byte(message))
if err != nil {
log.Panic(err)
}
err = w.Close()
if err != nil {
log.Panic(err)
}
c.Quit()
}