I have some code that creates a new task in outlook when an email comes in that meets a certain criteria. That part of the code works fine. However If I receive an invitation for a meeting notification (is this now an calendar item?) then I get a type mismatch error in my code. Any ideas?
The error is highlighted on the line that says:
Set oMailItem = oFolderInbox.Items.GetFirst
Thanks for your time and help.
Code:
Option Explicit
Option Base 1
[green][i]' for automatic syntax highlighting see faq102-6487
[/i][/green][b]Private[/b] [b]Sub[/b] Application_NewMail()
[b]Dim[/b] oNameSpace [b]As[/b] NameSpace
[b]Dim[/b] oFolderInbox [b]As[/b] MAPIFolder
[b]Dim[/b] oMailItem [b]As[/b] MailItem
[b]Set[/b] oNameSpace = Application.GetNamespace([navy]"MAPI"[/navy])
[b]Set[/b] oFolderInbox = oNameSpace.GetDefaultFolder(olFolderInbox)
oFolderInbox.Items.Sort [navy]"Received"[/navy], False
[b]Set[/b] oMailItem = oFolderInbox.Items.GetFirst
[green][i]'Check the message subject for quote requests to Kirk Thomas
[/i][/green] [green][i]'if exist then create a task for it and delete the email
[/i][/green] [b]If[/b] InStr(LCase(oMailItem.Subject), [navy]"pqr"[/navy]) > 0 [b]Or[/b] _
InStr(LCase(oMailItem.Subject), [navy]"rfq"[/navy]) > 0 [b]Or[/b] _
InStr(LCase(oMailItem.Subject), [navy]"ccqr"[/navy]) > 0 [b]And[/b] _
InStr(LCase(oMailItem.Body), [navy]"estimator is kirk thomas"[/navy]) > 0 [b]Then[/b]
[b]With[/b] oMailItem
NewTask .SenderName, .Subject, .Body, .Attachments
[b]End[/b] [b]With[/b]
oMailItem.Delete
[b]End[/b] [b]If[/b]
[b]Set[/b] oMailItem = [b]Nothing[/b]
[b]Set[/b] oFolderInbox = [b]Nothing[/b]
[b]Set[/b] oNameSpace = [b]Nothing[/b]
[b]End[/b] [b]Sub[/b]
Set oMailItem = oFolderInbox.Items.GetFirst
Thanks for your time and help.