-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmail.cs
321 lines (298 loc) · 9 KB
/
Email.cs
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
// Decompiled with JetBrains decompiler
// Type: TransmissionLine.Email
// Assembly: TransmissionLine, Version=3.6.3.5, Culture=neutral, PublicKeyToken=null
// MVID: 92E11920-ED50-4C1F-99A1-3CFB7DCC3364
// Assembly location: C:\Users\Home\AppData\Local\Apps\2.0\477AE5HX.86E\PEE3MCH4.84B\tran..tion_127a55d62cc03faa_0003.0006_03fd5c6fef0309f2\TransmissionLine.exe
using Microsoft.VisualBasic.CompilerServices;
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Mail;
using System.Text;
using System.Threading;
namespace TransmissionLine
{
public class Email
{
private string _smtpHost;
private string _smtpUser;
private string _smtpPass;
private string _message;
private string _subject;
private List<string> _toEmail;
private List<string> _ccs;
private List<string> _bccs;
private List<string> _attachments;
private int _smtpPort;
private bool _useEncryption;
private bool _htmlEmail;
public Email()
{
this._toEmail = new List<string>();
this._ccs = new List<string>();
this._bccs = new List<string>();
this._attachments = new List<string>();
this._smtpPort = 525;
this._htmlEmail = false;
}
public Email(string smtpHost, string smtpUser, string smtpPass)
{
this._toEmail = new List<string>();
this._ccs = new List<string>();
this._bccs = new List<string>();
this._attachments = new List<string>();
this._smtpPort = 525;
this._htmlEmail = false;
this._smtpHost = smtpHost;
this._smtpPass = smtpPass;
this._smtpUser = smtpUser;
}
public Email(
string smtpHost,
string smtpUser,
string smtpPass,
string subject,
string message)
{
this._toEmail = new List<string>();
this._ccs = new List<string>();
this._bccs = new List<string>();
this._attachments = new List<string>();
this._smtpPort = 525;
this._htmlEmail = false;
this._smtpHost = smtpHost;
this._smtpPass = smtpPass;
this._smtpUser = smtpUser;
this._subject = subject;
this._message = message;
}
public string smtpHost
{
get => this._smtpHost;
set => this._smtpHost = value;
}
public string smtpUser
{
get => this._smtpUser;
set => this._smtpUser = value;
}
public string smtpPass
{
get => this._smtpPass;
set => this._smtpPass = value;
}
public string message
{
get => this._message;
set => this._message = value;
}
public string subject
{
get => this._subject;
set => this._subject = value;
}
public List<string> CCs
{
get => this._ccs;
set => this._ccs = value;
}
public List<string> BCCs
{
get => this._bccs;
set => this._bccs = value;
}
public List<string> Tos
{
get => this._toEmail;
set => this._toEmail = value;
}
public int SMTPPort
{
get => this._smtpPort;
set => this._smtpPort = value;
}
public bool UseEncryption
{
get => this._useEncryption;
set => this._useEncryption = value;
}
public bool HTMLEmail
{
get => this._htmlEmail;
set => this._htmlEmail = value;
}
[Obsolete("This method should no longer be used, instead use the Tos property", true)]
public void addToEmail(string emailAddress) => this.Tos.Add(emailAddress);
public bool addAttachment(string fileLocation)
{
bool flag = false;
if (System.IO.File.Exists(fileLocation))
{
flag = true;
this._attachments.Add(fileLocation);
}
return flag;
}
public List<string> getAttachments() => this._attachments;
public void removeAttachment(string fileLocation) => this._attachments.Remove(fileLocation);
private bool attachmentsAreAvailable()
{
bool flag = true;
try
{
foreach (string attachment in this._attachments)
{
if (!System.IO.File.Exists(attachment))
{
flag = false;
break;
}
}
}
finally
{
List<string>.Enumerator enumerator = default;
enumerator.Dispose();
}
return flag;
}
public Email.sendEmailResult sendEmail()
{
Email.sendEmailResult sendEmailResult = Email.sendEmailResult.successful;
if (this._subject.Length > 0)
{
if (this._message.Length > 0)
{
if (this.Tos.Count > 0)
{
if (this._smtpHost.Length > 0 & this._smtpPass.Length > 0 & this._smtpUser.Length > 0)
{
if (this.attachmentsAreAvailable())
{
MailMessage message = new MailMessage();
message.Body = this._message;
message.Subject = this._subject;
message.From = new MailAddress(this._smtpUser);
if (this._htmlEmail)
{
message.IsBodyHtml = this._htmlEmail;
message.BodyEncoding = Encoding.UTF8;
}
try
{
foreach (string to in this.Tos)
message.To.Add(to);
}
finally
{
List<string>.Enumerator enumerator = default;
enumerator.Dispose();
}
try
{
foreach (string cc in this.CCs)
message.CC.Add(cc);
}
finally
{
List<string>.Enumerator enumerator = default;
enumerator.Dispose();
}
try
{
foreach (string bcC in this.BCCs)
message.Bcc.Add(bcC);
}
finally
{
List<string>.Enumerator enumerator = default;
enumerator.Dispose();
}
try
{
foreach (string attachment in this._attachments)
message.Attachments.Add(new Attachment(attachment));
}
finally
{
List<string>.Enumerator enumerator = default;
enumerator.Dispose();
}
SmtpClient smtpClient = new SmtpClient(this._smtpHost);
smtpClient.UseDefaultCredentials = false;
smtpClient.Credentials = (ICredentialsByHost) new NetworkCredential(this._smtpUser, this._smtpPass);
smtpClient.EnableSsl = this.UseEncryption;
smtpClient.Port = this.SMTPPort;
bool flag;
try
{
smtpClient.Send(message);
sendEmailResult = Email.sendEmailResult.successful;
flag = true;
}
catch (SmtpException ex)
{
ProjectData.SetProjectError((Exception) ex);
flag = false;
smtpClient.Send(message);
ProjectData.ClearProjectError();
}
catch (Exception ex)
{
ProjectData.SetProjectError(ex);
sendEmailResult = Email.sendEmailResult.unknownError;
flag = false;
ProjectData.ClearProjectError();
}
if (!flag)
{
Thread.Sleep(1000);
try
{
smtpClient.Send(message);
sendEmailResult = Email.sendEmailResult.successful;
}
catch (SmtpException ex)
{
ProjectData.SetProjectError((Exception) ex);
sendEmailResult = Email.sendEmailResult.unableToConnect;
ProjectData.ClearProjectError();
}
catch (Exception ex)
{
ProjectData.SetProjectError(ex);
sendEmailResult = Email.sendEmailResult.unknownError;
ProjectData.ClearProjectError();
}
}
message.Dispose();
}
else
sendEmailResult = Email.sendEmailResult.attachmentNotAvailable;
}
else
sendEmailResult = Email.sendEmailResult.noSMTPDetails;
}
else
sendEmailResult = Email.sendEmailResult.noToEmails;
}
else
sendEmailResult = Email.sendEmailResult.noMessage;
}
else
sendEmailResult = Email.sendEmailResult.noSubject;
return sendEmailResult;
}
public enum sendEmailResult
{
successful = 0,
noToEmails = 1,
noMessage = 2,
noSubject = 3,
noSMTPDetails = 4,
unableToConnect = 5,
attachmentNotAvailable = 6,
unknownError = 99, // 0x00000063
}
}
}