Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

OK, I think I got the answer, we have to make sure the mailItem.body is not null and the position is 1. it works

share|improve this answer
OK, let me anwser the this Q, we have to make sure the mail.body is not null, cause the posisition of attechment at least be 1, 0 will be visiable, then if the body is null, the attechment won't been seen – user1287219 Jun 25 '12 at 1:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.