Hi,

Does any body have links to resource etc for code to send email with attachment from within an application, created for windows mobile 2003se pls

i know i'm not going to be able to use

Dim oOApp As Outlook.Application
Dim oOMail As Outlook.MailItem

oOApp = CreateObject("Outlook.Application")
oOMail = oOApp.CreateItem(olMailItem)

With oOMail
.To = "[email protected]"
.Subject = "email subject"
.Body = "email message"
.Attachments.Add("\filename")
.Send()
End With



any help most appreciated