Newbie Macro question

  • Thread starter Thread starter jp storage
  • Start date Start date
J

jp storage

I want to create a very simplistic macro to automatically insert some
email address into the TO: field in a new email window.

I tried modifying some of the macros on the web, but i can't get it
done. Any assistance will be GREAT!
 
Try this:

Sub MySub()
On Error Resume Next
Set objItem = Application.ActiveInspector.CurrentItem
objItem.To = "(e-mail address removed)"
End Sub
 
Back
Top