A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Saving attachment from shared mailbox



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old July 20th 09, 03:25 PM posted to microsoft.public.outlook.program_vba
N1KO
external usenet poster
 
Posts: 1
Default Saving attachment from shared mailbox

Hi,

I have the following code below that allows me to save all the attachments
from my own Inbox.

Sub GetAttachments()

On Error GoTo GetAttachments_err

Dim ns As NameSpace
Dim Inbox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim i As Integer

Set ns = GetNamespace("MAPI")
Set Inbox = ns.GetDefaultFolder(olFolderInbox)
i = 0

If Inbox.Items.Count = 0 Then
MsgBox "There are no messages in the Inbox!", vbInformation, "Nothing
Found"
Exit Sub
End If

For Each Item In Inbox.Items
For Each Atmt In Item.Attachments
FileName = "C:\Documents and
Settings\earpn\Desktop\Developments\Attachments\" & Atmt.FileName
Atmt.SaveAsFile FileName
i = i + 1
Next Atmt
Next Item

If i 0 Then
MsgBox "I found " & i & " attached files." _
& vbCrLf & "I have saved them to C:\Documents and
Settings\earpn\Desktop\Developments\Attachments." _
& vbCrLf, vbInformation, "Finished!"
Else
MsgBox "I didn't find any attached files in your mail.", vbInformation,
"Finished!"
End If

GetAttachments_exit:

Set Atmt = Nothing
Set Item = Nothing
Set ns = Nothing

Exit Sub

GetAttachments_err:

MsgBox "An unexpected error has occurred." _
& vbCrLf & "Please note and report the following information." _
& vbCrLf & "Macro Name: GetAttachments" _
& vbCrLf & "Error Number: " & Err.Number _
& vbCrLf & "Error Description: " & Err.Description _
, vbCritical, "Error!"

Resume GetAttachments_exit

End Sub

I now need to enable this to save the attachments from a shared mailbox that
i have access too and to save them into specific folders based on the first 6
characters of the attachments file name.

Is this possible? If so does anyone have any ideas of how to do it.

Folder will be a 6 digit number
E-mail will be say & it'll be that e-mails Inbox i want to access

Thanks in advance
Ads
  #2  
Old July 22nd 09, 04:49 PM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Saving attachment from shared mailbox



For accessing a shared mailbox see the GetSharedDefaultFolder function. For
text parsing the functions Instr, Left, Right, and Mid are useful.

--
Best regards
Michael Bauer - MVP Outlook

: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: http://www.vboffice.net/product.html?pub=6&lang=en


Am Mon, 20 Jul 2009 07:25:01 -0700 schrieb N1KO:

Hi,

I have the following code below that allows me to save all the attachments
from my own Inbox.

Sub GetAttachments()

On Error GoTo GetAttachments_err

Dim ns As NameSpace
Dim Inbox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim i As Integer

Set ns = GetNamespace("MAPI")
Set Inbox = ns.GetDefaultFolder(olFolderInbox)
i = 0

If Inbox.Items.Count = 0 Then
MsgBox "There are no messages in the Inbox!", vbInformation, "Nothing
Found"
Exit Sub
End If

For Each Item In Inbox.Items
For Each Atmt In Item.Attachments
FileName = "C:\Documents and
Settings\earpn\Desktop\Developments\Attachments\" & Atmt.FileName
Atmt.SaveAsFile FileName
i = i + 1
Next Atmt
Next Item

If i 0 Then
MsgBox "I found " & i & " attached files." _
& vbCrLf & "I have saved them to C:\Documents and
Settings\earpn\Desktop\Developments\Attachments." _
& vbCrLf, vbInformation, "Finished!"
Else
MsgBox "I didn't find any attached files in your mail.",

vbInformation,
"Finished!"
End If

GetAttachments_exit:

Set Atmt = Nothing
Set Item = Nothing
Set ns = Nothing

Exit Sub

GetAttachments_err:

MsgBox "An unexpected error has occurred." _
& vbCrLf & "Please note and report the following information." _
& vbCrLf & "Macro Name: GetAttachments" _
& vbCrLf & "Error Number: " & Err.Number _
& vbCrLf & "Error Description: " & Err.Description _
, vbCritical, "Error!"

Resume GetAttachments_exit

End Sub

I now need to enable this to save the attachments from a shared mailbox

that
i have access too and to save them into specific folders based on the

first 6
characters of the attachments file name.

Is this possible? If so does anyone have any ideas of how to do it.

Folder will be a 6 digit number
E-mail will be say & it'll be that e-mails Inbox i want to

access

Thanks in advance

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Resource mailbox options not fully saving in OWA Booker@GT Outlook - Calandaring 0 April 21st 09 09:18 PM
Saving an attachment DMc2004 Outlook and VBA 1 July 1st 08 02:38 PM
Trouble saving a text attachment EMoscosoCam Outlook and VBA 5 April 30th 08 02:49 PM
Help with Saving Attachment with VBA from Rules Murphybp2 Outlook and VBA 4 August 21st 07 02:16 PM
saving email without attachment Happy Outlook Express 3 January 24th 06 05:34 PM


All times are GMT +1. The time now is 11:20 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.