我目前在MVC3中提供一个表单,供用户填写一些字段并附加文件。提交时,我将发布的信息(带附件)发送两次......一张作为收据发给海报,另一部发送给另一份目标电子邮件。
我遇到的问题是使用正确的attachemnt成功发送了第一封电子邮件。第二封电子邮件将发送出一个大小为0的附件。似乎在我从文件上传制作附件对象后,我无法再次重复使用它。使用调试器我可以看到文件上传对象仍在内存中,但其ContentLength变为0。
因此,在下面的示例中,如果我按如下方式简化代码:
public static void SendDummyEmail1()
{
using (var mailMessage = new MailMessage("from@email.com", "to@email.com"))
{
mailMessage.Subject = "Email Subject"
mailMessage.Body = Razor.Parse(template, (dynamic)dynamicTokens);
mailMessage.IsBodyHtml = true;
if (_fileUpload != null && _fileUpload.ContentLength > 0)
{
var attachment = new Attachment(_fileUpload.InputStream, _fileUpload.FileName, MediaTypeNames.Application.Octet);
attachment.ContentDisposition.FileName = Path.GetFileName(_fileUpload.FileName);
mailMessage.Attachments.Add(attachment);
}
SendMail(mailMessage);
}
}
public static void SendMail(MailMessage message)
{
var client = new SmtpClient
{
Host = ConfigurationManager.AppSettings[SmtpHostname],
Port = Convert.ToInt32(ConfigurationManager.AppSettings[SmtpPortNumber]),
UseDefaultCredentials = true,
Credentials = CredentialCache.DefaultNetworkCredentials,
DeliveryMethod = SmtpDeliveryMethod.Network,
EnableSsl = true,
};
// Work around remote certificate validation
// Ref: http://stackoverflow.com/questions/777607/the-remote-certificate-is-invalid-according-to-the-validation-procedure-using
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
client.Send(message);
}
如果我连续两次调用上述方法,第一封电子邮件将成功通过。第二封电子邮件将通过,但没有附件,因为ContentLength为0。
SendDummyEmail1();
SendDummyEmail1();
答案 0 :(得分:3)
我认为_fileUpload.InputStream.CanSeek
在您的情况下等于false
,这意味着您无法再次将其填满(Position = 0
)并从中读取。尝试首先将上传的文件流复制到内存流中,然后使用它而不是初始流,如下所示:
MemoryStream ms = new MemoryStream();
_fileUpload.InputStream.CopyTo(ms);
byte[] data = ms.ToArray();
SendDummyEmail1(data);
SendDummyEmail1(data);
public static void SendDummyEmail1(byte[] fileContent)
{
...
var attachment = new Attachment(new MemoryStream(fileContent), ...
}
答案 1 :(得分:3)
使用内存流作为实例变量而不是_fileUpload。 然后将其克隆到每个电子邮件的新流(因此没有多个消费者)。请记住在写入后重置流,以便从头开始读取附件
答案 2 :(得分:0)
将上传的文件存储在服务器上,并使用附件中的文件路径。
var attachment = new Attachment(filePath, MediaTypeNames.Application.Octet);
发送电子邮件后,如果需要,请删除上传的文件。