Results 1 to 5 of 5

Thread: How to prompt Outlook 2003 to automatically save attachments

  1. #1
    Join Date
    Jan 2011
    Posts
    86

    How to prompt Outlook 2003 to automatically save attachments

    Hey friends I have searched the information from various sites but still I am not able to get any related information for my query that I would want to get it solved as early as possible. I am using Outlook 2003 for the sending and receiving of mails and what I would like to have is that whenever I receive any kind of email from any user and if it contains the PDF folder, then I would want that the PDF folder gets automatically saved in the drive on my computer rather than getting saved on the Oulook folder. As I frequently receive PDF folders so it is really very difficult to go inside the Outook and search for each and every folder, so I would like to have a folder on my drive which will automatically save the PDF received through the Oulook.

  2. #2
    Join Date
    Nov 2009
    Posts
    877

    Re: How to prompt Outlook 2003 to automatically save attachments

    For making this thing possible you will have to use some kind of VBA script edited in your own way just to get the files automatically saved in the folder on your drive. Open Outlook 2003 on your system and press ALT + F11 in order to open the VB editor and if you have all the knowledge about the scripts that it has been written on it, then you can edit it the way you want so as to get the attachments saved directly on to a folder in your drive. I would also suggest you to make use of a mail rule to trigger the macro that will help you in making this thing possible.

  3. #3
    Join Date
    Jun 2009
    Posts
    761

    Re: How to prompt Outlook 2003 to automatically save attachments

    Hello friends, I have checked out for the solution so as to bring the attachments directly inside the folder, you can do this by clicking on the project explorer window on the left side of the editor. Loacate the ThisOutlookSessioin by clicking to the plus symbol next to the project name, now set up your rule by clicking TOOLS and then tabbing to the RULES AND ALERTS and after that selecting the option NEW RULE. Once you have done the above go to the FROM PEOPLE OR DISTRIBUTION LIST and then select the value for the source names along with the email address by clicking to the link in the rule description window at the bottom. After setting the value click NEXT, after that you will get the option of save attachments and precisely you will have to select it on a particular folder on a drive.

  4. #4
    Join Date
    Nov 2009
    Posts
    680

    Re: How to prompt Outlook 2003 to automatically save attachments

    Hey why don’t you use the Outlook 2007 on your system instead of the Outlook 2003 because the option so as to save the attachments of PDf file of the Outlook directly into the folder onto your drive. Also more importantly it contains too many best feature as compared to the previous version of the Outlook . So all I can say that instead of breaking your head off in doing and editing the scripts for making this change why don’t directly go for the Oulook 2007 as it will certainly make your task more simpler.

  5. #5
    Join Date
    Nov 2009
    Posts
    652

    Re: How to prompt Outlook 2003 to automatically save attachments

    I have manged to do some changes in the scripting of the Outlook 2003 through which I was comfortably abel to get the attachments directly go inside a folder on my drive. So I would suggest you to ollow this option and make the necessary changes carefully.

    Code:
    Sub SaveAttachments(myMail As MailItem)
    Dim vFrom As String, vSubject As String
    Dim vFile As Attachment
     
    vFrom = myMail.ReceivedByName
    vSubject = myMail.Subject
     
    If myMail.Attachments.Count > 0 Then
            For i = 1 To myMail.Attachments.Count
                Set vFile = myMail.Attachments(i)
                If LCase(vFile.FileName) Like "*.pdf" Then
                vFile.SaveAsFile "C:\Test\" & vFile.FileName
                End If
            Next i
    End If
     
    
    Set myMail = Nothing
    Set vFile = Nothing
    End Sub

Similar Threads

  1. Can't open .msg and .eml attachments in Outlook 2003
    By Kaysel in forum Windows Vista Mail
    Replies: 3
    Last Post: 09-01-2014, 10:05 AM
  2. Replies: 3
    Last Post: 26-11-2010, 03:37 AM
  3. Outlook 2003 attachments are slow to open
    By microam_i in forum Windows Software
    Replies: 3
    Last Post: 28-07-2009, 08:49 PM
  4. How To Save All Attachments from Emails in Outlook 2007
    By Dr.Jones in forum Tips & Tweaks
    Replies: 2
    Last Post: 16-07-2009, 02:16 PM
  5. Outlook 2003 - Cannot open Email Attachments
    By Billie in forum MS Office Support
    Replies: 1
    Last Post: 27-10-2007, 07:16 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,750,078,041.28423 seconds with 16 queries