Hi Guys,
I have a big problem.
I want to merge two oft/msg outlook templates.
when I try to open my oft/msg outlook template with:
Outlook.Application oApp = new Outlook.Application();
Outlook.MailItem newMail = (Outlook.MailItem)oApp.CreateItemFromTemplate(path);
newMail.Display();
It works - pictures are visible..
The problem is that I need to merge two templates into one email.
I tried to copy one HTMLBody to string and to add it to other HTMLBody
It works - but pictures dissapear :(
IS there any way to achieve that including the pictures??
HELP!