如何将MailMessage对象保存为磁盘* .eml或* .msg文件

时间:2009-08-12 07:16:09

标签: c# .net email mailmessage eml

如何将MailMessage对象保存到磁盘? MailMessage对象不公开任何Save()方法。

如果以任何格式保存* .eml或* .msg,我都没有问题。知道怎么做吗?

5 个答案:

答案 0 :(得分:114)

为简单起见,我只引用Connect item的解释:

  

您实际上可以配置   SmtpClient将电子邮件发送到该文件   系统而不是网络。您可以   以编程方式使用   以下代码:

SmtpClient client = new SmtpClient("mysmtphost");
client.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory;
client.PickupDirectoryLocation = @"C:\somedirectory";
client.Send(message);
     

你也可以在你的身上进行设置   应用程序配置文件   这样:

 <configuration>
     <system.net>
         <mailSettings>
             <smtp deliveryMethod="SpecifiedPickupDirectory">
                 <specifiedPickupDirectory pickupDirectoryLocation="C:\somedirectory" />
             </smtp>
         </mailSettings>
     </system.net>
 </configuration>
  

发送电子邮件后,您应该   看到电子邮件文件被添加到   您指定的目录。那你可以   有一个单独的过程发出   批量模式的电子邮件。

您应该能够使用空构造函数而不是列出的构造函数,因为它无论如何都不会发送它。

答案 1 :(得分:24)

这是将MailMessage转换为包含EML数据的流的扩展方法。 它显然有点像黑客,因为它使用文件系统,但它的工作原理。

public static void SaveMailMessage(this MailMessage msg, string filePath)
{
    using (var fs = new FileStream(filePath, FileMode.Create))
    {
        msg.ToEMLStream(fs);
    }
}

/// <summary>
/// Converts a MailMessage to an EML file stream.
/// </summary>
/// <param name="msg"></param>
/// <returns></returns>
public static void ToEMLStream(this MailMessage msg, Stream str)
{
    using (var client = new SmtpClient())
    {
        var id = Guid.NewGuid();

        var tempFolder = Path.Combine(Path.GetTempPath(), Assembly.GetExecutingAssembly().GetName().Name);

        tempFolder = Path.Combine(tempFolder, "MailMessageToEMLTemp");

        // create a temp folder to hold just this .eml file so that we can find it easily.
        tempFolder = Path.Combine(tempFolder, id.ToString());

        if (!Directory.Exists(tempFolder))
        {
            Directory.CreateDirectory(tempFolder);
        }

        client.UseDefaultCredentials = true;
        client.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory;
        client.PickupDirectoryLocation = tempFolder;
        client.Send(msg);

        // tempFolder should contain 1 eml file

        var filePath = Directory.GetFiles(tempFolder).Single();

        // stream out the contents
        using (var fs = new FileStream(filePath, FileMode.Open))
        {
            fs.CopyTo(str);
        }

        if (Directory.Exists(tempFolder))
        {
            Directory.Delete(tempFolder, true);
        }
    }
}

然后,您可以根据需要获取返回的流,包括保存到磁盘上的其他位置或存储在数据库字段中,甚至可以作为附件发送电子邮件。

答案 2 :(得分:3)

如果您使用的是 Mailkit 。只需在下面的代码中写

string fileName = "your filename full path";
MimeKit.MimeMessage message = CreateMyMessage ();
message.WriteTo (fileName);

答案 3 :(得分:0)

由于某种原因,client.send失败了(在使用该方法实际发送之后),所以我插入了良好的'ole CDO和ADODB流。在设置.Message值之前,我还必须使用template.eml加载CDO.message。但它确实有效。

由于上面的一个是C,这里是一个VB

{{1}}

答案 4 :(得分:0)

尝试

请使用这两个参考 (使用MailBee;) (使用MailBee.Mime;)

    public static string load(string to,string from,string cc,string bcc,string subject,string body, List<string> reportList,string path, bool HtmlbodyType)
    {
        try
        {
            MailBee.Mime.MailMessage msg = new MailBee.Mime.MailMessage();
            msg.From.AsString = from;
            msg.Subject = subject;
            if (HtmlbodyType == true)
            {
                msg.BodyHtmlText = body;
            }
            else
            {
                msg.BodyPlainText = body;
            }
            
            string[] receptionEmail = to.Split(new string[] { ",", ";" }, StringSplitOptions.RemoveEmptyEntries);
            string[] ccEmail = cc.Split(new string[] { ",", ";" }, StringSplitOptions.RemoveEmptyEntries);
            string[] bccEmail = bcc.Split(new string[] { ",", ";" }, StringSplitOptions.RemoveEmptyEntries);
            string message = "";
            foreach (string To in receptionEmail)
            {
                msg.To.Add(To);
            }
            foreach (string CC in ccEmail)
            {
                    msg.Cc.Add(CC);
            }
            foreach (string Bcc in bccEmail)
            {
                    msg.Bcc.Add(Bcc);

            }
                for (int x = 0; x < reportList.Count; x++)
                {
                    string fileName = reportList[x];
                    msg.Attachments.Add(fileName);
                }

                msg.SaveMessage(path);
                return "Success";
            
        }
        catch (Exception ex)
        {
            return ex.Message;
        }

    }