Hi.
I use this code (see code archives). But the mail did arrive at me. Using other mailfunction does not help. They all show: Mail sent. Any idea what´s wrong?
EDIT: The server does not need POP login first.
I use this code (see code archives). But the mail did arrive at me. Using other mailfunction does not help. They all show: Mail sent. Any idea what´s wrong?
EDIT: The server does not need POP login first.
t=OpenTCPStream( "smtp.1und1.de",25 ) If Not t RuntimeError( "Error connecting" ) WriteLine t,"EHLO BlitzMail" ;<------------I changed HELO to this because of Error 550 WriteLine t,"MAIL FROM: XXX@..." WriteLine t,"RCPT TO: XXX@..." WriteLine t,"DATA" WriteLine t,"Hello there Mark!" WriteLine t,"This is from Blitz Mail!" WriteLine t,"" WriteLine t,"." WriteLine t,"QUIT" CloseTCPStream (t) Print "Done. Press any key...":WaitKey