I got problem with programmingly create an outlook mailitem with attachment, as following code
Outlook.MailItem mail =
outlook.Application.CreateItem
(Outlook.OlItemType.olMailItem)
as Outlook.MailItem;
mail.AttachmentAdd.Add(GetTempDir() + "345325.html", Outlook.OlAttachmentType.olByValue,1, Type.Missing);
mail.Display(true);
but when actually open the mailitem, there is no attachment diplayed, even though from the mail size we could identify that attachement has been added