VB Script for replying to an e-mail

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I am trying to get Outlook to auto-reply to all messages to a certain
mailbox with a standard message. Although this is supported, we have this
turned off on the server.

Is it possible to write a script that will take the E-mail address from a
received e-mail, and send a template back to their address?

I have very little knowledge of VB in Outlook, but have used it in Excel and
Word for some time, so I am sure it can be done, but no idea on the syntax.

Cheers
 
Hi,

without Exchange you can use the ItemAdd event of your Inbox. A sample
is available in the VBA help.

An *.oft template cn can be opened with the CreateItemFromTemplate
function.
 
Back
Top