T
TechRetard
I wrote an outlook 2007 add-in that brought up a WPF window w/ fields to fill
out, and when you clicked the create e-mail button, it created an e-mail
based on the contents of the form. The problem lies in that it is bringing up
almost a "generic" e-mail -- it doesn't have my signature on it, if Microsoft
CRM is loaded it won't have the 'track in crm' listed -- it's almost as if it
doesn't know it's me sending it, but when i send the e-mail, it always sends
from my default account (which is good). Any help??
Outlook.Application App1 = new Microsoft.Office.Interop.Outlook.Application();
Outlook.MailItem mail1 = (Outlook.MailItem)
App1.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);
out, and when you clicked the create e-mail button, it created an e-mail
based on the contents of the form. The problem lies in that it is bringing up
almost a "generic" e-mail -- it doesn't have my signature on it, if Microsoft
CRM is loaded it won't have the 'track in crm' listed -- it's almost as if it
doesn't know it's me sending it, but when i send the e-mail, it always sends
from my default account (which is good). Any help??
Outlook.Application App1 = new Microsoft.Office.Interop.Outlook.Application();
Outlook.MailItem mail1 = (Outlook.MailItem)
App1.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);