【发布时间】:2021-11-24 07:58:25
【问题描述】:
我想创建 excel 文件并通过电子邮件将其作为附件发送 听到是我创建 excel 文件的代码,但我无法通过电子邮件发送,发送的电子邮件但没有附件。
这个用于创建 excel 文件。
DataTable dt = new DataTable("Grid");
dt.Columns.AddRange(new DataColumn[4] { new DataColumn("H_Id"),
new DataColumn("H_Name"),
new DataColumn("H_PassNo"),
new DataColumn("H_Pass_Issue"),
});
var marydatas = from MarryData in this._context.MarryData.Take(10)
select MarryData;
foreach (var marryData in marydatas)
{
dt.Rows.Add(marryData.H_Id, marryData.H_Name, marryData.H_PassNo, marryData.H_Pass_Issue);}
byte[] bytes = null;
using (XLWorkbook wb = new XLWorkbook())
{
wb.Worksheets.Add(dt);
using (MemoryStream stream = new MemoryStream())
{
wb.SaveAs(stream);
bytes = stream.ToArray();
}
}
这个用于发送电子邮件
var message = new MimeMessage();
message.From.Add(new MailboxAddress("test project", "maazonuae@gmail.com"));
message.To.Add(new MailboxAddress("naren", "a.saaeed81@gmail.com"));
message.Subject = "test maazon";
message.Body = new TextPart("HTML Table Exported Excel Attachment")
{
Text = "hello"
};
var builder = new BodyBuilder();
builder.Attachments.Add("Customers.xlsx", new MemoryStream(bytes));
var body = builder.ToMessageBody();
var emailBody = new MimeKit.BodyBuilder
{
};
emailBody.Attachments.Add("Customers.xlsx", bytes);
using (var client = new SmtpClient())
{
client.Connect("smtp.gmail.com", 587, false);
client.Authenticate("maazonuae@gmail.com", "maazonuae2021");
client.Send(message);
client.Disconnect(true);
}
因此,当它运行时,只需发送不带附件的电子邮件,并在附件中发送 (Text = "hello"),而不是在正文中。
谢谢
【问题讨论】: