You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
196 lines
6.6 KiB
C#
196 lines
6.6 KiB
C#
using MimeKit;
|
|
using MimeKit.Text;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CommonTool.MailKit
|
|
{
|
|
/// <summary>
|
|
/// 邮件信息
|
|
/// </summary>
|
|
public static class MailMessage
|
|
{
|
|
/// <summary>
|
|
/// 组装邮件文本/附件邮件信息
|
|
/// </summary>
|
|
/// <param name="mailBodyEntity">邮件消息实体</param>
|
|
/// <returns></returns>
|
|
public static MimeMessage AssemblyMailMessage(MailBodyEntity mailBodyEntity)
|
|
{
|
|
if (mailBodyEntity == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(mailBodyEntity));
|
|
}
|
|
var message = new MimeMessage();
|
|
|
|
//设置邮件基本信息
|
|
SetMailBaseMessage(message, mailBodyEntity);
|
|
|
|
var multipart = new Multipart("mixed");
|
|
|
|
//插入文本消息
|
|
if (!string.IsNullOrEmpty(mailBodyEntity.Body))
|
|
{
|
|
var alternative = new MultipartAlternative
|
|
{
|
|
AssemblyMailTextMessage(mailBodyEntity.Body, mailBodyEntity.MailBodyType)
|
|
};
|
|
multipart.Add(alternative);
|
|
}
|
|
|
|
//插入附件
|
|
foreach (var mailFile in mailBodyEntity.MailFiles)
|
|
{
|
|
if (mailFile.MailFilePath != null && File.Exists(mailFile.MailFilePath))
|
|
{
|
|
var mimePart = AssemblyMailAttachmentMessage(mailFile.MailFileType, mailFile.MailFileSubType,
|
|
mailFile.MailFilePath);
|
|
multipart.Add(mimePart);
|
|
}
|
|
}
|
|
|
|
//组合邮件内容
|
|
message.Body = multipart;
|
|
return message;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 设置邮件基础信息
|
|
/// </summary>
|
|
/// <param name="minMessag"></param>
|
|
/// <param name="mailBodyEntity"></param>
|
|
/// <returns></returns>
|
|
public static MimeMessage SetMailBaseMessage(MimeMessage minMessag, MailBodyEntity mailBodyEntity)
|
|
{
|
|
if (minMessag == null)
|
|
{
|
|
throw new ArgumentNullException();
|
|
}
|
|
if (mailBodyEntity == null)
|
|
{
|
|
throw new ArgumentNullException();
|
|
}
|
|
|
|
//插入发件人
|
|
minMessag.From.Add(new MailboxAddress(mailBodyEntity.Sender, mailBodyEntity.SenderAddress));
|
|
|
|
//插入收件人
|
|
if (mailBodyEntity.Recipients.Any())
|
|
{
|
|
foreach (var recipients in mailBodyEntity.Recipients)
|
|
{
|
|
minMessag.To.Add(new MailboxAddress(recipients));
|
|
}
|
|
}
|
|
|
|
//插入抄送人
|
|
if (mailBodyEntity.Cc != null && mailBodyEntity.Cc.Any())
|
|
{
|
|
foreach (var cC in mailBodyEntity.Cc)
|
|
{
|
|
minMessag.Cc.Add(new MailboxAddress(cC));
|
|
}
|
|
}
|
|
|
|
//插入密送人
|
|
if (mailBodyEntity.Bcc != null && mailBodyEntity.Bcc.Any())
|
|
{
|
|
foreach (var bcc in mailBodyEntity.Bcc)
|
|
{
|
|
minMessag.Bcc.Add(new MailboxAddress(bcc));
|
|
}
|
|
}
|
|
|
|
//插入主题
|
|
minMessag.Subject = mailBodyEntity.Subject;
|
|
return minMessag;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 组装邮件文本信息
|
|
/// </summary>
|
|
/// <param name="mailBody">邮件内容</param>
|
|
/// <param name="textPartType">邮件类型(plain,html,rtf,xml)</param>
|
|
/// <returns></returns>
|
|
public static TextPart AssemblyMailTextMessage(string mailBody, TextFormat textPartType)
|
|
{
|
|
if (string.IsNullOrEmpty(mailBody))
|
|
{
|
|
throw new ArgumentNullException();
|
|
}
|
|
//var textBody = new TextPart(textPartType)
|
|
//{
|
|
// Text = mailBody,
|
|
//};
|
|
|
|
//处理查看源文件有乱码问题
|
|
var textBody = new TextPart(textPartType);
|
|
textBody.SetText(Encoding.Default, mailBody);
|
|
return textBody;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 组装邮件附件信息
|
|
/// </summary>
|
|
/// <param name="fileAttachmentType">附件类型(image,application)</param>
|
|
/// <param name="fileAttachmentSubType">附件子类型 </param>
|
|
/// <param name="fileAttachmentPath">附件路径</param>
|
|
/// <returns></returns>
|
|
public static MimePart AssemblyMailAttachmentMessage(string fileAttachmentType, string fileAttachmentSubType, string fileAttachmentPath)
|
|
{
|
|
if (string.IsNullOrEmpty(fileAttachmentSubType))
|
|
{
|
|
throw new ArgumentNullException();
|
|
}
|
|
if (string.IsNullOrEmpty(fileAttachmentType))
|
|
{
|
|
throw new ArgumentNullException();
|
|
}
|
|
if (string.IsNullOrEmpty(fileAttachmentPath))
|
|
{
|
|
throw new ArgumentNullException();
|
|
}
|
|
var fileName = Path.GetFileName(fileAttachmentPath);
|
|
var attachment = new MimePart(fileAttachmentType, fileAttachmentSubType)
|
|
{
|
|
Content = new MimeContent(File.OpenRead(fileAttachmentPath)),
|
|
ContentDisposition = new ContentDisposition(ContentDisposition.Attachment),
|
|
ContentTransferEncoding = ContentEncoding.Base64,
|
|
//FileName = fileName,
|
|
};
|
|
|
|
//qq邮箱附件文件名中文乱码问题
|
|
//var charset = "GB18030";
|
|
attachment.ContentType.Parameters.Add(Encoding.Default, "name", fileName);
|
|
attachment.ContentDisposition.Parameters.Add(Encoding.Default, "filename", fileName);
|
|
|
|
//处理文件名过长
|
|
foreach (var param in attachment.ContentDisposition.Parameters)
|
|
param.EncodingMethod = ParameterEncodingMethod.Rfc2047;
|
|
foreach (var param in attachment.ContentType.Parameters)
|
|
param.EncodingMethod = ParameterEncodingMethod.Rfc2047;
|
|
|
|
return attachment;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 创建邮件日志文件
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public static string CreateMailLog()
|
|
{
|
|
var logPath = AppDomain.CurrentDomain.BaseDirectory + "/DocumentLog/" +
|
|
Guid.NewGuid() + ".txt";
|
|
|
|
if (File.Exists(logPath)) return logPath;
|
|
var fs = File.Create(logPath);
|
|
fs.Close();
|
|
return logPath;
|
|
|
|
}
|
|
}
|
|
} |