-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMailSender.cs
102 lines (86 loc) · 3.41 KB
/
MailSender.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
using Microsoft.Extensions.Configuration;
using NLog;
using System;
using System.IO;
using System.Net;
using System.Net.Mail;
using System.Net.Mime;
using Zp.Crypto;
namespace Zp
{
class MailSender : IMailSender
{
private static readonly ILogger logger = LogManager.GetCurrentClassLogger();
private readonly string smtpAddress;
private readonly string smtpPort;
private readonly string senderEmail;
private readonly string emailText;
private readonly IConfiguration cfg;
public MailSender(string smtpAddress, string smtpPort, string senderEmail, string emailText,
IConfiguration cfg)
{
this.smtpAddress = smtpAddress;
this.smtpPort = smtpPort;
this.senderEmail = senderEmail;
this.emailText = emailText;
this.cfg = cfg;
}
public bool SendEmail(string filePath, string destEmail, string emailSubject)
{
bool isErrorOccurs = false;
MailMessage message = null;
Attachment data = null;
try
{
message = new MailMessage();
string login = senderEmail.Substring(0, senderEmail.IndexOf('@'));
logger.Info("[MAIL-S] " +
"smtpAddress: " + smtpAddress
+ " smtpPort: " + smtpPort
+ " senderEmail: " + senderEmail
+ " emailSubject: " + emailSubject
+ " emailText: " + emailText
+ " destEmail: " + destEmail);
message.To.Add(destEmail);
message.Subject = emailSubject;
message.From = new MailAddress(senderEmail);
message.Body = emailText;
// Create the file attachment for this e-mail message.
data = new Attachment(filePath, MediaTypeNames.Application.Octet);
// Add time stamp information for the file.
ContentDisposition disposition = data.ContentDisposition;
disposition.CreationDate = File.GetCreationTime(filePath);
disposition.ModificationDate = File.GetLastWriteTime(filePath);
disposition.ReadDate = File.GetLastAccessTime(filePath);
// Add the file attachment to this e-mail message.
message.Attachments.Add(data);
var smtpClient = new SmtpClient(smtpAddress)
{
Port = int.Parse(smtpPort),
Credentials = new NetworkCredential(login,
Encryptor.DecryptString(cfg.GetSection("emailSettings")["emailPassword"], cfg.GetSection("emailSettings")["emailPasswordSalt"])),
EnableSsl = true,
};
logger.Info("[MAIL-S] Send email -> " + smtpClient.Host + " -> " + destEmail);
smtpClient.Send(message);
}
catch (Exception ex)
{
logger.Error(ex.Message);
isErrorOccurs = true;
}
finally
{
if (data != null)
data.Dispose();
if (message != null)
message.Dispose();
}
return isErrorOccurs;
}
}
internal interface IMailSender
{
bool SendEmail(string filePath, string destEmail, string emailSubject);
}
}