Outlook not processing all incoming emails

Status
Not open for further replies.
J

John

Hi

I am using function NewMailEx as per below code to process attachments from

incoming messages. Problem is Outlook is skipping processing some of the

mail items probably when there are a number of them coming at the same time.

What is the problem and how can I fix it? Is there a more robust way to do

this? I have avoided .net add-in due to installation issues.

Thanks

Regards

Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)

Dim arr() As String

Dim i As Integer

Dim ns As Outlook.NameSpace

Dim itm As MailItem

Dim m As Outlook.MailItem

Set ns = Application.Session

arr = Split(EntryIDCollection, ",")

For i = 0 To UBound(arr)

Set itm = ns.GetItemFromID(arr(i))

If itm.Class = olMail Then

Set m = itm

For Each Atmt In m.Attachments

' Do some processing here

Next Atmt

End If

Next

Set ns = Nothing

Set itm = Nothing

Set m = Nothing

End Sub
 

Michael Bauer

Senior Member
Outlook version
Outlook 2010 32 bit
Email Account
Exchange Server
It shouldn't skip anything. Why do you think it does so?

Best regards

Michael Bauer

Am Fri, 25 Sep 2009 02:47:44 +0100 schrieb John:


> Hi

> I am using function NewMailEx as per below code to process attachments


from
> incoming messages. Problem is Outlook is skipping processing some of the
> mail items probably when there are a number of them coming at the same


time.
> What is the problem and how can I fix it? Is there a more robust way to do
> this? I have avoided .net add-in due to installation issues.

> Thanks

> Regards

> Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
> Dim arr() As String
> Dim i As Integer
> Dim ns As Outlook.NameSpace
> Dim itm As MailItem
> Dim m As Outlook.MailItem

> Set ns = Application.Session
> arr = Split(EntryIDCollection, ",")

> For i = 0 To UBound(arr)
> Set itm = ns.GetItemFromID(arr(i))
> If itm.Class = olMail Then
> Set m = itm
> For Each Atmt In m.Attachments
> ' Do some processing here
> Next Atmt
> End If
> Next

> Set ns = Nothing
> Set itm = Nothing
> Set m = Nothing
> End Sub
 
J

John

Heavy load?

Regards

"Michael Bauer " <mb@mvps.org> wrote in message

news:z00ryc1ya6gf.h3qxehd5614n$.dlg@40tude.net...

> It shouldn't skip anything. Why do you think it does so?

> > Best regards
> Michael Bauer

> >

> Am Fri, 25 Sep 2009 02:47:44 +0100 schrieb John:
>
> > Hi
>

>> I am using function NewMailEx as per below code to process attachments

> from
> > incoming messages. Problem is Outlook is skipping processing some of the
> > mail items probably when there are a number of them coming at the same

> time.
> > What is the problem and how can I fix it? Is there a more robust way to
> > do
> > this? I have avoided .net add-in due to installation issues.
>

>> Thanks
>

>> Regards
>

>
>> Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
> > Dim arr() As String
> > Dim i As Integer
> > Dim ns As Outlook.NameSpace
> > Dim itm As MailItem
> > Dim m As Outlook.MailItem
>

>> Set ns = Application.Session
> > arr = Split(EntryIDCollection, ",")
>

>> For i = 0 To UBound(arr)
> > Set itm = ns.GetItemFromID(arr(i))
> > If itm.Class = olMail Then
> > Set m = itm
> > For Each Atmt In m.Attachments
> > ' Do some processing here
> > Next Atmt
> > End If
> > Next
>

>> Set ns = Nothing
> > Set itm = Nothing
> > Set m = Nothing
> > End Sub
 

Michael Bauer

Senior Member
Outlook version
Outlook 2010 32 bit
Email Account
Exchange Server
I don't understand your answer. Does it really skip messages, or just

attachments? If the first, process all the items within the folder, and flag

those that are processed yet (user property); if the latter, it's due to the

code you haven't provided.

Best regards

Michael Bauer

Am Sat, 26 Sep 2009 20:12:24 +0100 schrieb John:


> Heavy load?

> Regards

> "Michael Bauer " <mb@mvps.org> wrote in message
> news:z00ryc1ya6gf.h3qxehd5614n$.dlg@40tude.net...
>

>> It shouldn't skip anything. Why do you think it does so?
>

>> > > Best regards
> > Michael Bauer
>

>> >> >
>
>> Am Fri, 25 Sep 2009 02:47:44 +0100 schrieb John:
> >
> >> Hi
> >
>>> I am using function NewMailEx as per below code to process attachments

> > from
> >> incoming messages. Problem is Outlook is skipping processing some of the
> >> mail items probably when there are a number of them coming at the same

> > time.
> >> What is the problem and how can I fix it? Is there a more robust way to
> >> do
> >> this? I have avoided .net add-in due to installation issues.
> >
>>> Thanks
> >
>>> Regards
> >
>>
>>> Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
> >> Dim arr() As String
> >> Dim i As Integer
> >> Dim ns As Outlook.NameSpace
> >> Dim itm As MailItem
> >> Dim m As Outlook.MailItem
> >
>>> Set ns = Application.Session
> >> arr = Split(EntryIDCollection, ",")
> >
>>> For i = 0 To UBound(arr)
> >> Set itm = ns.GetItemFromID(arr(i))
> >> If itm.Class = olMail Then
> >> Set m = itm
> >> For Each Atmt In m.Attachments
> >> ' Do some processing here
> >> Next Atmt
> >> End If
> >> Next
> >
>>> Set ns = Nothing
> >> Set itm = Nothing
> >> Set m = Nothing
> >> End Sub
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
C Outlook 2007 Removing then adding account restores junk email processing Using Outlook 0
T "Words In Recipient's Address" Rule Causes Outlook To Stop Processing Rules Using Outlook 3
E Outlook Form - Voting Responses Not Auto Processing If Form Contains Any Code Outlook VBA and Custom Forms 0
M Outlook 2016 Desktop - Automatic Rule Processing Using Outlook 3
K Outlook 2013 stuck "processing" when opening. Using Outlook 3
Retired Geek Outlook for the MAC with Yahoo accounts now very broken Using Outlook 2
S Outlook 2002- "Send" button has disappeared. Help please. Using Outlook 1
L How Stop Outlook Nag Messages Using Outlook 1
TomHuckstep Remove Send/Receive All Folders (IMAP/POP) button from Outlook 365 Ribbon Using Outlook 1
L I Cannot Sign Into My Outlook Account? Outlook VBA and Custom Forms 0
icacream Outlook 2021 - Google calendar in the peek Using Outlook 0
e_a_g_l_e_p_i Question about installing my Gmail account on my iPhone but still getting messages downloaded to my desktop Outlook. Using Outlook 3
F Want to add second email to Outlook for business use Using Outlook 3
kburrows Outlook Email Body Text Disappears/Overlaps, Folders Switch Around when You Hover, Excel Opens Randomly and Runs in the Background - Profile Corrupt? Using Outlook 0
M using excel to sort outlook appointment items Outlook VBA and Custom Forms 4
e_a_g_l_e_p_i MY Outlook 2021 changed the format of the shortcuts for mail, calendar etc. Using Outlook 10
Z Outlook 2021 Outlook new emails notification not working Using Outlook 5
K Changing the Deleted Items location in Outlook 2019 Using Outlook 2
J Outlook 365 Outlook Macro to Sort emails by column "Received" to view the latest email received Outlook VBA and Custom Forms 0
V How to use Comas in a picklist in Outlook forms Outlook VBA and Custom Forms 3
e_a_g_l_e_p_i Question about reinstalling Outlook 2021 Using Outlook 5
A Outlook 365 Outlook (part of 365) now working offline - argh Using Outlook 5
M Outlook Macro to save as Email with a file name format : Date_Timestamp_Sender initial_Email subject Outlook VBA and Custom Forms 0
G LinkedIn tab missing in Outlook 365 (but working in OWA) Using Outlook 0
J Outlook forgets "not junk" marking Using Outlook 0
KurtLass Opening Graphics Attachments in Outlook 2021 Using Outlook 0
P now on office 365 but getting error messages about missing Outlook 2013 cache folders Using Outlook 2
B Outlook config download Outlook VBA and Custom Forms 1
M Short term workaround for when Outlook searching stopped functioning Using Outlook 0
D Outlook 2016 Creating an outlook Macro to select and approve Outlook VBA and Custom Forms 0
L Fetch, edit and forward an email with VBA outlook Outlook VBA and Custom Forms 2
BartH VBA no longer working in Outlook Outlook VBA and Custom Forms 1
L Synch Outlook 365 calendar with iPhone Using Outlook 0
W Can vba(for outlook) do these 2 things or not? Outlook VBA and Custom Forms 2
S Outlook 2016 and Acrobat PDFMaker Office COM Addin Using Outlook 0
M "Attachment Detacher for Outlook" add in, does it update the server copy of the email? Using Outlook 1
M Outlook 365 Rename Outlook Priority Using Outlook 3
R Outlook 2019 accesses POP3 but says its offline (because of IMAP servers?) Using Outlook 0
R Outlook Working off line Using Outlook 0
D Outlook 365 Custom forms field limit? Outlook VBA and Custom Forms 4
W Outlook 2016 MSI - Possible to make work with O365 modern Auth & Win7? Using Outlook 4
T Outlook roaming signatures Using Outlook 4
S Adding a recipient's column to Sent folder in Outlook 2010 Outlook VBA and Custom Forms 1
J Outlook search bar in Office 2021 Professional Using Outlook 1
J PSA: How to create custom keyboard shortcut for "Paste Unformatted Text" in Outlook on Windows Outlook VBA and Custom Forms 1
C How to fix outlook continuing to prompt fo an Exchange password Using Outlook 0
C Outlook doesn't feel reliable, anymore Using Outlook 5
J Outlook 2016 Trying to get Outlook 2016 to work with Office 365 Using Outlook 0
C Outlook 365 Copy/Save Emails in Folder Outside Outlook to Show Date Sender Recipient Subject in Header Using Outlook 0
U Outlook not responding when trying to print Emails Using Outlook 6

Similar threads

Top