> I'm having a hard time commecting to an smtp server when i sed the "Subject:
> any\n\n"; it replyes with an web page address saiing that i'm triing to send a
> "bare LF" well so can anybody tell me what is the code for <CR><LF> is it
> chr(10)chr(13) ?
> or "\c\l"?

I'm not sure you want <CR><LF>, that's the DOS line ending.  I'm guessing
you only want one \n in your subject, but I'm not sure.

For <CR><LF>, that would be \r\n, chr(13)chr(10).

HTH.

- B


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to