G
Gabe
Hello,
I am pretty new at this but, how do you insert standard text into a new
e-mail message without deleting the default signature? I am using the
following code:
Sub Macro1()
Set OutLk = CreateObject("Outlook.Application")
Set Email = OutLk.CreateItem(0)
With Email
..To = "(e-mail address removed)"
..Subject = "New Message"
..Body = "Hello?"
..Display
End With
Set Email = Nothing
Set OutLk = Nothing
End Sub
I am pretty new at this but, how do you insert standard text into a new
e-mail message without deleting the default signature? I am using the
following code:
Sub Macro1()
Set OutLk = CreateObject("Outlook.Application")
Set Email = OutLk.CreateItem(0)
With Email
..To = "(e-mail address removed)"
..Subject = "New Message"
..Body = "Hello?"
..Display
End With
Set Email = Nothing
Set OutLk = Nothing
End Sub