Form to forward mail to a specific e-mail address

  • Thread starter Thread starter Andibevan
  • Start date Start date
A

Andibevan

Hi All,

Is there a way to add a button to the outlook e-mail form so that it
forwards the mail to a specific e-mail address?

i.e. I receive an e-mail, open the e-mail, want to forward it so press the
button and a copy is sent to (e-mail address removed).

Thanks

Andi
 
Hi All,

Is there a way to add a button to the outlook e-mail form so that it
forwards the mail to a specific e-mail address?

i.e. I receive an e-mail, open the e-mail, want to forward it so press the
button and a copy is sent to (e-mail address removed).

Thanks

Andi
What's wrong with clicking to forward to a stored Nickname?
 
A button on a custom form is not an appropriate solution for this, but it
wouldn't be hard to do with a VBA macro that you could add to your OUtlook
toolbar:

Sub ForwardMe()
On Error Resume Next
Set thisItem = Application.ActiveInspector.CurrentItem
Set fwdItem = thisItem.Forward
fwdItem.To = "(e-mail address removed)"
fwdItem.Send
End Sub
 
Back
Top