forked from sendgrid/sendgrid-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mail.go
247 lines (214 loc) · 5.08 KB
/
mail.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
package sendgrid
import (
"encoding/json"
"io"
"io/ioutil"
"net/mail"
"time"
"github.com/sendgrid/smtpapi-go"
)
// SGMail is representation of a valid SendGrid Mail
type SGMail struct {
To []string
ToName []string
Cc []string
Subject string
Text string
HTML string
From string
Bcc []string
FromName string
ReplyTo string
Date string
Files map[string]string
Content map[string]string
Headers map[string]string
smtpapi.SMTPAPIHeader
}
// NewMail returns a new *SGMail
func NewMail() *SGMail {
return &SGMail{}
}
// AddTo adds a valid email address
func (m *SGMail) AddTo(email string) error {
address, err := mail.ParseAddress(email)
if err != nil {
return err
}
m.AddRecipient(address)
return nil
}
// AddTos adds multiple email addresses
func (m *SGMail) AddTos(emails []string) error {
for i := 0; i < len(emails); i++ {
if err := m.AddTo(emails[i]); err != nil {
return err
}
}
return nil
}
// AddRecipient will add mail.Address emails to recipients.
func (m *SGMail) AddRecipient(recipient *mail.Address) {
m.To = append(m.To, recipient.Address)
if recipient.Name != "" {
m.ToName = append(m.ToName, recipient.Name)
}
}
// AddRecipients calls AddRecipient per email
func (m *SGMail) AddRecipients(recipients []*mail.Address) {
for i := 0; i < len(recipients); i++ {
m.AddRecipient(recipients[i])
}
}
// AddToName sets the "pretty" name for a recipient
func (m *SGMail) AddToName(name string) {
m.ToName = append(m.ToName, name)
}
// AddToNames sets the "pretty" name for multiple recipients
func (m *SGMail) AddToNames(names []string) {
m.ToName = append(m.ToName, names...)
}
// AddCc ...
func (m *SGMail) AddCc(cc string) error {
address, err := mail.ParseAddress(cc)
if err != nil {
return err
}
m.AddCcRecipient(address)
return nil
}
// AddCcs ...
func (m *SGMail) AddCcs(ccs []string) error {
for i := 0; i < len(ccs); i++ {
if err := m.AddCc(ccs[i]); err != nil {
return err
}
}
return nil
}
// AddCcRecipient ...
func (m *SGMail) AddCcRecipient(recipient *mail.Address) {
m.Cc = append(m.Cc, recipient.Address)
}
// AddCcRecipients ...
func (m *SGMail) AddCcRecipients(recipients []*mail.Address) {
for i := 0; i < len(recipients); i++ {
m.AddCcRecipient(recipients[i])
}
}
// SetSubject sets the email's subject
func (m *SGMail) SetSubject(subject string) {
m.Subject = subject
}
// SetText sets the email's text
func (m *SGMail) SetText(text string) {
m.Text = text
}
// SetHTML sets the email's HTML
func (m *SGMail) SetHTML(html string) {
m.HTML = html
}
// SetFrom will set the senders email property
func (m *SGMail) SetFrom(from string) error {
address, err := mail.ParseAddress(from)
if err != nil {
return err
}
m.SetFromEmail(address)
return nil
}
// SetFromEmail sets the senders email property
func (m *SGMail) SetFromEmail(address *mail.Address) {
m.From = address.Address
if address.Name != "" {
m.SetFromName(address.Name)
}
}
// AddBcc ...
func (m *SGMail) AddBcc(bcc string) error {
address, err := mail.ParseAddress(bcc)
if err != nil {
return err
}
m.AddBccRecipient(address)
return nil
}
// AddBccs ...
func (m *SGMail) AddBccs(bccs []string) error {
for i := 0; i < len(bccs); i++ {
if err := m.AddBcc(bccs[i]); err != nil {
return err
}
}
return nil
}
// AddBccRecipient ...
func (m *SGMail) AddBccRecipient(recipient *mail.Address) {
m.Bcc = append(m.Bcc, recipient.Address)
}
// AddBccRecipients ...
func (m *SGMail) AddBccRecipients(recipients []*mail.Address) {
for i := 0; i < len(recipients); i++ {
m.AddBccRecipient(recipients[i])
}
}
// SetFromName ...
func (m *SGMail) SetFromName(fromname string) {
m.FromName = fromname
}
// SetReplyTo ...
func (m *SGMail) SetReplyTo(replyto string) error {
address, err := mail.ParseAddress(replyto)
if err != nil {
return err
}
m.SetReplyToEmail(address)
return nil
}
// SetReplyToEmail ...
func (m *SGMail) SetReplyToEmail(address *mail.Address) {
m.ReplyTo = address.Address
}
// SetDate ...
func (m *SGMail) SetDate(date string) {
m.Date = date
}
// SetRFCDate ...
func (m *SGMail) SetRFCDate(date time.Time) {
m.Date = date.Format(time.RFC822)
}
// AddAttachment allows file attachments to be sent. For security reasons,
// this method doesn't take filepaths only the io.Reader interface.
func (m *SGMail) AddAttachment(filename string, file io.Reader) error {
stream, err := ioutil.ReadAll(file)
if err != nil {
return err
}
m.AddAttachmentFromStream(filename, string(stream))
return nil
}
// AddAttachmentFromStream ...
func (m *SGMail) AddAttachmentFromStream(filename, file string) {
if m.Files == nil {
m.Files = make(map[string]string)
}
m.Files[filename] = file
}
// AddContentID ...
func (m *SGMail) AddContentID(id, value string) {
if m.Content == nil {
m.Content = make(map[string]string)
}
m.Content[id] = value
}
// AddHeader ...
func (m *SGMail) AddHeader(header, value string) {
if m.Headers == nil {
m.Headers = make(map[string]string)
}
m.Headers[header] = value
}
func (m *SGMail) HeadersString() (string, error) {
headers, e := json.Marshal(m.Headers)
return string(headers), e
}