Forwarding Form

G

Greg

Hi
When I forward a form it is attaching the form to an email but losses the
original senders details. What I am after is if the form is forwarded to
another person they reply to the orginal sender and not the forwarder. If
this can not be done can i set the original form to be sent as an attachment
and not a form

Thanks

Greg
 
S

Sue Mosher [MVP-Outlook]

In the code behind your form, you can add code to the Item_Forward event handler to set the original message's sender as the reply recipient for the forwarded item:

Function Item_Forward(ByVal ForwardItem)
ForwardItem.ReplyRecipients.Add Item.SenderEmailAddress
End Function

Another approach is to go to the (Actions) page of your form design and change the setting for the Forward action so that it attaches the original message.
 

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