Send reply when email is sent HELP!

  • Thread starter Thread starter laavista
  • Start date Start date
L

laavista

I'm using Outlook 2000-2002 and really need help. I've spent hours trying to
figure out how to do something that should be simple...

I send hundreds of emails with attachments each week. When I send an email
with specific words in the title, I need to also send a copy of the email
WITHOUT the attachment to specific addressees. I thought I could use VBA to
do a REPLY to that email so the attachments would not be sent. I cannot get
the code to work.

I created a sub application.itemsend that "fires" whenever I send an email
and can put up a msgbox, but I can't get a reply to work.

Does anyone have an example of some vba code that would work?

Any help would be appreciated...
 
You cannot reply to a message for which the sending process is not yet
complete. Instead, make a copy of the message with the Copy method and
remove all the attachments from the copy.
 
Thank you! This makes sense.

Sue Mosher said:
You cannot reply to a message for which the sending process is not yet
complete. Instead, make a copy of the message with the Copy method and
remove all the attachments from the copy.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
 
Back
Top