Enrico,
Maybe these old messages will help.
Regards,
James
Falconi Silvio escribió en mensaje <3ae462d1@servidor3a.dimasoft.es>...
>I COMPILED AND LINKED TESTPOP3.PRG
>
> I insert this line :
>
> oInMail = TPop3():New( "mail server",, "myuser", "mypass" ) // mail server IP
>
>
>1. Mail server can I use also the name of my provider example
>
www.supereva.it )
> My mail server is webmail.supereva.it
>2 my user My code user
>3. MY pass My pass of my post email
>
> I proved this program but the program not run :
>the program not create error but I not saw any messages
>How can I do to see the messages .....and put it on a databases ?
>Have you an example ?
-----------------------------------
From: "Mariano Triñanes" <mariano@sistemahalley.com.ar>
Subject: Re: TPOP3 CLASS
Date: Monday, April 23, 2001 1:02 PM
Hi,
As you told, you passed
www.supereva.it as a parameter, you must resolve it to ip address first, using Gethostbyname function. By the way, are you sure
www.supereva.it host is offering pop services and not webmail?
How do you resolve it? easy
- Code: Select all Expand view
if WsaStartup() == 0
cIp := gethostbyname("yourhost.com")
WsaCleanUp()
endif
and cIP variable, is the one you must use...
The username and password of course, are the ones that you use, in string format.
Cheers
mariano