91 lines
3.6 KiB
C#
91 lines
3.6 KiB
C#
using MailKit.Net.Smtp;
|
|
using MimeKit;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using MimeKit.Text;
|
|
using System.IO;
|
|
|
|
namespace Sockeye.Util
|
|
{
|
|
public interface IMailer
|
|
{
|
|
Task SendEmailAsync(string email, string subject, string body, Sockeye.Models.GlobalOpsNotificationSettings smtpSettings, string attachPDF = null, string forceFileName = null, string htmlBody = null);
|
|
}
|
|
|
|
public class Mailer : IMailer
|
|
{
|
|
public Mailer()
|
|
{
|
|
|
|
}
|
|
|
|
public async Task SendEmailAsync(string email, string subject, string body, Sockeye.Models.GlobalOpsNotificationSettings smtpSettings, string attachPDFPath = null, string forceFileName = null, string htmlBody = null)
|
|
{
|
|
try
|
|
{
|
|
var message = new MimeMessage();
|
|
message.From.Add(new MailboxAddress(smtpSettings.NotifyFromAddress, smtpSettings.NotifyFromAddress));
|
|
message.To.Add(MailboxAddress.Parse(email));
|
|
message.Subject = subject;
|
|
|
|
if (!string.IsNullOrWhiteSpace(attachPDFPath))
|
|
{
|
|
var attachment = new MimePart("application/pdf", "pdf")
|
|
{
|
|
Content = new MimeContent(File.OpenRead(attachPDFPath), ContentEncoding.Default),
|
|
ContentDisposition = new ContentDisposition(ContentDisposition.Attachment),
|
|
ContentTransferEncoding = ContentEncoding.Base64,
|
|
FileName = Path.GetFileName(attachPDFPath)
|
|
|
|
};
|
|
if (!string.IsNullOrWhiteSpace(forceFileName))
|
|
attachment.FileName = forceFileName;
|
|
|
|
var multipart = new Multipart("mixed");
|
|
if (!string.IsNullOrWhiteSpace(body))
|
|
multipart.Add(new TextPart(TextFormat.Plain) { Text = body });
|
|
multipart.Add(attachment);
|
|
message.Body = multipart;
|
|
}
|
|
else
|
|
{
|
|
// if (!string.IsNullOrWhiteSpace(body))
|
|
// message.Body = new TextPart(TextFormat.Plain) { Text = body };
|
|
|
|
MimeKit.BodyBuilder builder = new BodyBuilder();
|
|
|
|
if (!string.IsNullOrWhiteSpace(body))
|
|
builder.TextBody = body;
|
|
|
|
if (!string.IsNullOrWhiteSpace(htmlBody))
|
|
builder.HtmlBody = htmlBody;
|
|
|
|
message.Body = builder.ToMessageBody();
|
|
}
|
|
|
|
using (var client = new SmtpClient())
|
|
{
|
|
client.ServerCertificateValidationCallback = (s, c, h, e) => true;
|
|
|
|
bool UseSSL = smtpSettings.ConnectionSecurity != Biz.NotifyMailSecurity.None;
|
|
await client.ConnectAsync(smtpSettings.SmtpServerAddress, smtpSettings.SmtpServerPort, UseSSL);
|
|
|
|
|
|
await client.AuthenticateAsync(smtpSettings.SmtpAccount, smtpSettings.SmtpPassword);
|
|
await client.SendAsync(message);
|
|
await client.DisconnectAsync(true);
|
|
DisposeStreamsInMimeMessage(message);
|
|
}
|
|
|
|
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
throw new InvalidOperationException(e.Message);
|
|
}
|
|
}
|
|
|
|
public static void DisposeStreamsInMimeMessage(MimeMessage msg) { foreach (var part in msg.BodyParts) (part as MimePart)?.Content?.Stream?.Dispose(); }
|
|
|
|
}
|
|
} |