Hi, any idea how get (with fwin) any single message from a DBX file of Outlook Express ?
I need it to get and process many many emails message in automatic mode using fwin
tks
Romeo/Zingoni
Hi, any idea how get (with fwin) any single message from a DBX file of Outlook Express ?
I need it to get and process many many emails message in automatic mode using fwin
tks
Romeo/Zingoni
#define olFolderInbox 6
FUNCTION MAIN()
LOCAL oOutlook := CREATEOBJECT( "Outlook.Application" )
LOCAL oNameSpace := oOutlook:GetNameSpace("MAPI")
LOCAL oInbox := oNameSpace:GetDefaultFolder( olFolderInbox )
LOCAL i
FOR i = 1 TO oInbox:Items:Count
? oInbox:Items[ i ]:Body
?
NEXT
oOutlook:Quit()
INKEY( 0 )
RETURN NILEnrico,
He specified Outlook Exrpess. Will your code work with it?
James
No, sorry. I missed it.
EMG
Romeo,
If the mail is coming off a POP3 server, then perhaps you can get the mail directly using TPop3. See samples\testpop3.prg.
James