Form to forward mail to a specific e-mail address

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
 
T

tom

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?
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top