manage attch file in outlook
hi
i want to do a rule that when i recive a file from someone name x
it will activate a code that will copy the file that is attch and put it in a folder name y in c:
what is the code for it ?
maybe i will do it in macro? but how can i activated the macro automaticly
tnks in advanced
Re: manage attch file in outlook
If you write some VBA code and monitor the item send event you can then copy the message and move it to where ever you want.
VB Code:
'Outlook 2002 and earlier
Private Sub Application_NewMail()
End Sub
VB Code:
'Outlook 2003 and 2007
Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
End Sub
Re: manage attch file in outlook
hi
tnks for the replay
but i dont understand quit how to do it?
i am new in this area
can i do it in a macro that will activate automaticly when i recive the attch it will copy it to a folder?