-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.go
168 lines (137 loc) · 3.63 KB
/
email.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
package bart
import (
"fmt"
"io/ioutil"
"net/smtp"
"os"
"os/exec"
"path/filepath"
"github.com/cbroglie/mustache"
"github.com/howeyc/gopass"
"github.com/jaytaylor/html2text"
)
type authPair struct {
login string
password string
}
// Asks user for the login and password for the email server
func (ap *authPair) prompt() error {
fmt.Printf("Login: ")
fmt.Scanln(&ap.login)
fmt.Printf("Password: ")
pass, err := gopass.GetPasswd()
if err != nil {
return err
}
ap.password = string(pass) // `pass` is already a slice
return nil
}
type EmailBuilder interface {
AddAuthor(*Author) EmailBuilder
AddRecipient(string) EmailBuilder
AddContent(string) EmailBuilder
Build(map[string]string) (Email, error)
}
// Email builder struct containing all the nitty-gritty details and subfields of our custom email
type emailBuilder struct {
fromName string
fromEmail string
toEmail string
mailText string
}
func NewEmail() EmailBuilder {
return &emailBuilder{}
}
func (eb *emailBuilder) AddAuthor(a *Author) EmailBuilder {
eb.fromName = a.Name
eb.fromEmail = a.Email
return eb
}
func (eb *emailBuilder) AddRecipient(rs string) EmailBuilder {
eb.toEmail = rs
return eb
}
func (eb *emailBuilder) AddContent(s string) EmailBuilder {
eb.mailText = s
return eb
}
func (eb *emailBuilder) Build(context map[string]string) (Email, error) {
mustache.AllowMissingVariables = false
headerTemplate := "From: " + EncodeRfc1342(eb.fromName) + " <" + eb.fromEmail + ">\r\n" +
"To: " + eb.toEmail + "\r\n" +
"Subject: {{__subject_encoded__}}\r\n" +
"MIME-version: 1.0;\r\n" +
"Content-Type: multipart/alternative;\r\n" +
"\tboundary=\"" + boundary + "\"\r\n\r\n"
header, err := mustache.Render(headerTemplate, context)
if err != nil {
return nil, err
}
partHtml, err := mustache.Render(eb.mailText, context)
if err != nil {
return nil, err
}
partText, err := html2text.FromString(partHtml, html2text.Options{PrettyTables: true})
if err != nil {
return nil, err
}
e := new(email)
e.fromEmail = eb.fromEmail
e.toEmails = []string{eb.toEmail, eb.fromEmail}
e.header = emailHeader{header}
e.items = []mimepart{&textHtml{partHtml}, &textPlain{partText}}
return e, nil
}
type Email interface {
Send(*EmailServer, *authPair) error
OpenInBrowser(string) error
GetRecipients() []string
}
type email struct {
fromEmail string
toEmails []string
header emailHeader
items []mimepart
}
func (e *email) Send(s *EmailServer, ap *authPair) error {
serverInfo := fmt.Sprintf("%s:%d", s.Hostname, s.Port)
auth := smtp.PlainAuth("", ap.login, ap.password, s.Hostname)
m := e.header.asPlainBytes()
for i := 0; i < len(e.items); i++ {
m = append(m, e.items[i].asBase64()...)
}
m = append(m, footerAsPlainBytes()...)
return smtp.SendMail(serverInfo, auth, e.fromEmail, e.toEmails, m)
}
func (e *email) OpenInBrowser(browserName string) error {
// Create an HTML view of the email
html := e.header.asHtml()
for i := 0; i < len(e.items); i++ {
html = append(html, e.items[i].asHtml()...)
}
html = append(html, footerAsHtml()...)
// Create a temp file and write the email to it
tmpfile, err := ioutil.TempFile(".", "bart_preview_")
if err != nil {
return err
}
if _, err := tmpfile.Write(html); err != nil {
return err
}
if err := tmpfile.Close(); err != nil {
return err
}
// Rename the file
oldFilename, err := filepath.Abs(filepath.Join(".", tmpfile.Name()))
if err != nil {
return err
}
newFilename := oldFilename + ".html"
os.Rename(oldFilename, newFilename)
// Open it in browser
cmd := exec.Command(browserName, newFilename)
return cmd.Start()
}
func (e *email) GetRecipients() []string {
return e.toEmails
}