我通过.emlhmailserver
文件接收电子邮件并将这些电子邮件作为另一份报告电子邮件的附件发送。
我在阅读这些电子邮件并将其作为附件发送时遇到问题。
这就是我正在做的事情。
public void addAttachment(string pathname, bool retry)
{
string attachmentname = "";
do
{
try
{
attachmentname = Path.GetFileNameWithoutExtension(pathname);
Stream file = new MemoryStream(File.ReadAllBytes(pathname));
Log.WriteMessage("Size" + file.Length);
dtstreamAttach.Add(attachmentname+".eml", file);
retry = false;
}
catch (ArgumentException e)
{
string strCurrentTs = DateTime.Now.ToString(strDateFormat);
attachmentname = attachmentname + "-" + strCurrentTs+".eml";
}
} while (retry);
}
然后,
MailMessage message = new MailMessage();
.
.
message.Attachments.Add(new Attachment(kvp.Value, kvp.Key)); // I have an attachment dictionary
string contenttype = GetMimeType(".eml");
ContentType cnttype = new ContentType(contenttype);
message.Attachments[0].ContentType = cnttype;
如您所见,我打印了流大小-打印出的内容类似于4790Bytes (4KB) 但是当我收到电子邮件时,我只得到一个大小为 1KB 的 eml 文件,而 eml 文件是空的。
我检查了文件路径,并确保在我的报告邮件发出之前,电子邮件就在那里。我还验证了内容类型是message/rfc822
.
一切似乎都在检查。不确定是什么问题。