Hi,
I would like to create new mail which is reply to existing mail;
I'm doing something like this:
Outlook.MailItem newMail =
(Outlook.MailItem)mailItem.Application.CreateItem(Outlook.OlItemType.olMailItem);
newMail = mailItem.Reply();
I would like to eliminate the automatic signature that is added to the
replyed message.
Can it be done?
Thanks,
Lior