无法通过电子邮件发送文件

failed to send the file by Email

我使用 rdlc 报告系统创建了一个报告查看器。但是问题来了,当我通过电子邮件发送这个文件时,我发现了一个错误。我的程序是这样的:-

首先,我创建了一个报告进程,它显示了我的“订单”数据库的所有信息。当我 运行 我的应用程序时,该信息将我显示为桌面上的一个文件系统。这个文件,我想通过电子邮件发送。但是当我试图发送这个时,我发现了很多错误。

这是我的代码:-


   public async Task<IActionResult> CheckOut(Order11 anOrder)
   {

      //other code


         
                //report process



                string mimetype = "";
                int extension = 1;
                var path = $"{this._webHostEnvironment.WebRootPath}\Reports\Report2.rdlc";
                Dictionary<string, string> parameters = new Dictionary<string, string>();
                var products = _db.Order.ToList();
                LocalReport localReport = new LocalReport(path);
                localReport.AddDataSource("DataSet1", products);

                var result = localReport.Execute(RenderType.Pdf, extension, parameters, mimetype);

                 var s= File(result.MainStream, "application/pdf");
              
                

                //report process end




                //Email Sender start



                var email = anOrder.Email;
                var message = new MimeMessage();
                message.From.Add(new MailboxAddress("Ghatia Bazar",
                "pri@gmail.com"));
                message.To.Add(new MailboxAddress("pritom", email));
                message.Subject = "Order Details";
                message.Body = new TextPart("plain")
                {
                    Text = "Hi,Thanks For Order.",
                };
                //add attach
                MemoryStream memoryStream = new MemoryStream();
                BodyBuilder bb = new BodyBuilder();
                using (var wc = new WebClient())
                {
                   
                    bb.Attachments.Add("s",
                    wc.DownloadData("path"));
                  

                }

                message.Body = bb.ToMessageBody();
                //end attach
                using (var client = new SmtpClient())
                {
                    client.Connect("smtp.gmail.com", 587, false);
                    client.Authenticate("pri@gmail.com",
                    "MyPassword");
                    client.Send(message);
                    client.Disconnect(true);
                }


                //Email sender end


//other code

我用这个的时候也用bb.Attachments.Add("s", result.MainStream); 代替 bb.Attachments.Add("s", wc.DownloadData("path")); ,然后我发现了一封意想不到的邮件。在这封电子邮件的文件中,我发现了很多代码。所以现在 bb.Attachments.Add("s", wc.DownloadData("path")); 我正在使用这个过程来附加文件。但是在这里我发现了一个不同的错误。

这是我的输出:-

我将如何解决这个问题 problem.How 我通过电子邮件发送我创建的文件。我还是初学者,请大家帮忙

从代码看来,您正在使用 AspNetCore.Reporting 库从 RDLC 文件生成报告。

此库的代码在 GitHub https://github.com/amh1979/AspNetCore.Reporting

上可用 此库中的

LocalReport class 具有 Execute 方法,其中 return ReportResult class.

的一个实例

这两个 classes 的代码位于 https://github.com/amh1979/AspNetCore.Reporting/blob/master/AspNetCore.Reporting/LocalReport.cs

ReportResult class 有一个 属性 MainStream 将报告的内容表示为字节数组。

现在,通过 BodyBuilder 附加到 MimeMessage 支持各种文件内容输入,例如 Stream、byte[] 等

有了这些知识,我认为您可以直接使用 ReportResult.MainStream 将文件附加到 BodyBuilder。

您可以如下更改代码以使其正常工作。

var path = $"{this._webHostEnvironment.WebRootPath}\Reports\Report2.rdlc";
Dictionary<string, string> parameters = new Dictionary<string, string>();
var products = _db.Order.ToList();
LocalReport localReport = new LocalReport(path);
localReport.AddDataSource("DataSet1", products);

//Following line of code returns an instance of ReportResult class
var result = localReport.Execute(RenderType.Pdf, extension, parameters, mimetype);

var email = anOrder.Email;
var message = new MimeMessage();
message.From.Add(new MailboxAddress("Ghatia Bazar", "pri@gmail.com"));
message.To.Add(new MailboxAddress("pritom", email));
message.Subject = "Order Details";
message.Body = new TextPart("plain")
{
    Text = "Hi,Thanks For Order.",
};
var bb = new BodyBuilder();

// Following line will attach the report as "MyFile.pdf".
// You can use filename of your choice.
bb.Attachments.Add("Myfile.pdf", result.MainStream);

message.Body = bb.ToMessageBody();

using (var client = new SmtpClient())
{
    client.Connect("smtp.gmail.com", 587, false);
    client.Authenticate("pri@gmail.com", "MyPassword");
    client.Send(message);
    client.Disconnect(true);
}

希望本文能帮助您解决问题。