Auto Reply form?

  • Thread starter Thread starter Titanl9
  • Start date Start date
T

Titanl9

I am interested in having an autoreply form available. When I click reply,
a special form opens extracts the reply email and puts in the to field,
extracts the senders name and puts it into a paragraph. The form has a
canned subject and canned text that I can change according to need.

Anybody know how or where I can go to set up such.

Happy Holidays
Titan
 
You can code the Reply event for the current message to launch a custom form
like this:

Set objFolder = Application.ActiveExplorer.CurrentFolder Set objItem =
objFolder.Items.Add("IPM.Note.Your Custom Form") objItem.DisplayThen add
code in your form's Open event to get the e-mail address from the original
message. See http://www.slipstick.com/dev/code/getsenderaddy.htm for info
on doing this. This should get you started; let me know if you have any
other specific questions. Good luck!
 
Back
Top