You were on the right track the first time, but you forgot to create the message. Leave in the On Error Resume Next statement, then after you try to return myItemWPac, add:
if myItemWPac = nothing then
'send email to myself
Set objErrMessage = Application.CreateItem(0)
objErrMessage.To = "kevin.xxxxxx@xxxxxx.com"
objErrMessage.Subject = "No item received from WPac"
objErrMessage.Body = "File not received. Checked at "
objErrMessage.Send
end if
I'm assuming you have an Application object somewhere.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> On Error Resume Next
>
[quoted text clipped - 31 lines]
>
> -Kevin Brown
akivabrown@gmail.com - 30 Jun 2006 20:13 GMT
I created the message earlier
Set myOlApp = createObject("outlook.application")
Set oNameSpace = myOlApp.GetNameSpace("MAPI")
Set oFolder = oNameSpace.GetDefaultFolder(6)
Set objErrMessage = myOlApp.CreateItem(olMailItem)
> You were on the right track the first time, but you forgot to create the message. Leave in the On Error Resume Next statement, then after you try to return myItemWPac, add:
>
[quoted text clipped - 51 lines]
> >
> > -Kevin Brown
akivabrown@gmail.com - 30 Jun 2006 20:18 GMT
Got it working. Thanks alot Sue. You are a god. Don't forget that.
> I created the message earlier
>
[quoted text clipped - 58 lines]
> > >
> > > -Kevin Brown