0

我通过.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.

一切似乎都在检查。不确定是什么问题。

4

1 回答 1

0

我能够解决它。看起来MemoryStream有正确的流,并且ContentStream消息对象的大小也正确,但是 Stream位置已移动到流的末尾,因此当实际发送消息时,它实际上什么都没有。

因此,请确保在将流添加到之前将流重新定位回原点AttachmentCollection,例如

Seek(0, SeekOrigin.Begin)

尤其是在使用包装在 dll 中的流时,某些东西可能会移动它们。

于 2014-05-16T17:26:11.487 回答