Results 1 to 3 of 3

Download Attachment and Rename With Subject Line v2

Threaded View

  1. #1
    Registered User
    Join Date
    03-31-2013
    Location
    USA
    MS-Off Ver
    Excel 2013
    Posts
    33

    Download Attachment and Rename With Subject Line v2

    I saw the old thread, linked here http://www.excelforum.com/outlook-pr...ject-line.html but am wondering a different question (complete newb to VBA)...

    Sub Download_attachments_Sent_by_me2me(MyMail As MailItem)
    Dim strID As String
    Dim objNS As Outlook.NameSpace
    Dim objMail As Outlook.MailItem
    Dim objAtt As Outlook.Attachment
    Dim c As Integer
    Dim save_name As String
    
    'Place path to sav to on next line. Note that you must include the
    'final backslash
    Const save_path As String = "C:\Users\jason.anderson\outlookattachments\"
    
    strID = MyMail.EntryID
    Set objNS = Application.GetNamespace("MAPI")
    Set objMail = objNS.GetItemFromID(strID)
    
    If objMail.Attachments.Count > 0 Then
    For c = 1 To objMail.Attachments.Count
    Set objAtt = objMail.Attachments(c)
    save_name = Left(objAtt.FileName, Len(objAtt.FileName) - 4)
    'save_name = save_name & Format(objMail.ReceivedTime, "_mm-dd-yyyy_hhmm")
    save_name = save_name & Right(objAtt.FileName, 4)
    
    subject_name = objMail.Subject 'get subject
    correct_sub = Replace(subject_name, ":", "") ' remove bad characters
    objAtt.SaveAsFile save_path & correct_sub & ".pdf" ' save file on PATH with CORRECT SUB
    
    Next
    End If
    
    Set objAtt = Nothing
    Set objMail = Nothing
    Set objNS = Nothing
    End Sub
    This is the code I pasted in, but now I am trying to actually run the VBA against a series of emails - But am getting a Run-time error '4'4': Object Required notification for this line of code:

    strID = MyMail.EntryID
    What is this supposed to be?
    Last edited by CBJason; 05-02-2014 at 12:39 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Download attachment and rename with subject line
    By ali84pk in forum Outlook Programming / VBA / Macros
    Replies: 11
    Last Post: 07-25-2023, 12:01 PM
  2. Button to add attachment based on text in subject
    By Matei in forum Outlook Formatting & Functions
    Replies: 0
    Last Post: 09-24-2013, 09:27 AM
  3. [SOLVED] Macro to Rename Outlook Attachment Same as Email Subject
    By sandy_314 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-24-2013, 09:59 AM
  4. Save attachment with specific subject
    By souljive99 in forum Outlook Programming / VBA / Macros
    Replies: 0
    Last Post: 01-19-2011, 11:00 AM
  5. Emailing an attachment where the subject = data in cells
    By morris5984 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-23-2008, 12:40 PM

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1