【发布时间】:2019-11-01 07:33:30
【问题描述】:
我有这个代码:
using (var msg = new System.Net.Mail.MailMessage())
{
msg.Subject = subject;
msg.From = new System.Net.Mail.MailAddress(fromEmail);
msg.To = new System.Net.Mail.MailAddress(toEmail);
msg.Body = body;
var attachment = new System.Net.Mail.Attachment(file);
msg.Attachments.Add(attachment);
//using (var attachment = new System.Net.Mail.Attachment(file))
// msg.Attachments.Add(attachment);
using (var smtp = new System.Net.Mail.SmtpClient("smtp", 587))
{
smtp.Send(msg);
};
}
在我的情况下,文件附件是可选。
当我在attachment 上使用using 时,smtp.Send() 会抛出:
内部异常 1:ObjectDisposedException:无法访问已关闭的 文件
我的问题是如何正确处理这个问题?
如果我没有在附件上明确使用Dispose,MailMessage 是否也会处理内部附件?
【问题讨论】:
标签: c# email smtp attachment