1

我创建了一种方法,可以收集文件夹中的每个文件,然后将它们插入到 zip 文件中。然后通过邮件将 zip 文件发送给客户。我的问题是我可以毫无问题地发送带有 zip 文件的邮件消息,但是如果另一个用户生成 zip 文件并发送它,它会看起来像这样。

在此处输入图像描述

尝试将 excel 文件附加到邮件消息时,我遇到了同样的问题。但我发现您必须设置附加文件的 ContentType。在添加这一行之后: ContentType ct = new ContentType("application/vnd.ms-excel"); 对于它工作的 excel 文件。

我的问题是我现在正在尝试附加一个 zip 文件,我正在使用这一行:`ContentType ct = new ContentType("application/zip"); 但这不起作用。我正在使用DotNetZipLib-DevKit-v1.9将文件添加到 zip 文件中。

这是我的代码:

public void SendMailedFilesVallensbaek()
        {
            string[] vallensbeakFileNames = Directory.GetFiles(vallensbaekFiles);
            if (vallensbeakFileNames.Count() > 0)
            {
                ContentType ct = new ContentType("application/zip");
                string zipFile = vallensbaekFiles+@"\someZipFile.zip";
                using (ZipFile zip = new ZipFile())
                {
                    foreach (string file in vallensbeakFileNames)
                    {
                            zip.AddFile(file);
                    }

                    zip.Save(zipFile);
                }
                using (System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient("ares"))
                {
                    using (System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage())
                    {
                        msg.From = new MailAddress("system@mail.dk");
                        msg.To.Add(new MailAddress("lmy@mail.dk "));
                        msg.Subject = "IBM PUDO";
                        msg.Body = "Best Regards";
                        msg.Body += "<br/>";
                        msg.Body += "me";
                        msg.IsBodyHtml = true;

                        Attachment attachment = new Attachment(zipFile, ct);
                        msg.Attachments.Add(attachment);
                        //foreach (string file in sentFiles)
                        //{
                        //    Attachment attachment = new Attachment(file, ct);
                        //    msg.Attachments.Add(attachment);
                        //}

                        client.Send(msg);
                        client.Dispose();
                        msg.Dispose();
                        ct = null;
                    }
                }
            }
        }
4

1 回答 1

0

您应该检查 zip 文件是否在您的本地文件夹中创建,并且您的本地文件夹能够被 ASP.NET 用户访问。

于 2013-03-22T10:54:25.603 回答