Am Sun, 17 Sep 2006 21:11:45 +0100 schrieb John:
Call Display first, then insert your text before the existing the body
(instead of overwriting it).
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --
Hi
I am creating email via code from access using below;
Dim objOutlook As Outlook.Application
Dim objOutlookMsg As Outlook.MailItem
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
objOutlookMsg.To = "
objOutlookMsg.Subject = "Email Subject"
objOutlookMsg.Body = "Dear abc..."
objOutlookMsg.Display
The problem is that the default signature that is set in outlook doe snot
come up in the email. How can I fix it?
Thanks
Regards