Re: [PHP] text email & new line

2004-11-02 Thread Jerry Swanson
It is working without \r\n. Just using regular spaces/new lines in the text message. On Tue, 2 Nov 2004 18:34:00 +0100, Jordi Canals <[EMAIL PROTECTED]> wrote: > On Tue, 2 Nov 2004 16:25:56 +, Richard Davey <[EMAIL PROTECTED]> wrote: > > Hello Jerry, > > > > JS> I'm sending text email. How I

Re: [PHP] text email & new line

2004-11-02 Thread Jerry Swanson
#1. $headers .= "Content-Type: text/plain"; #2. $headers .= "Content-Type: text/html; charset=iso-8859-1\r\n"; If I use #1 header I don't need \n\r just create extra space on the email. Why \n\r doesn't work for #2 ? TH On Tue, 2 Nov 2004 17:23:41 +0100, Sebastiano Cascione <[EMAIL PROTECTED]

Re: [PHP] text email & new line

2004-11-02 Thread Jordi Canals
On Tue, 2 Nov 2004 16:25:56 +, Richard Davey <[EMAIL PROTECTED]> wrote: > Hello Jerry, > > JS> I'm sending text email. How I can make new line. > JS> "\n" seems to be not working. > > \n in a text (not HTML) email will do the trick most of the time, > sometimes I see \r\n, but \n works for me

Re: [PHP] text email & new line

2004-11-02 Thread Sebastiano Cascione
Use \r\n Some pop server doesn't support other special characters. Sebastiano Alle 17:12, martedì 2 novembre 2004, Jerry Swanson ha scritto: > I'm sending text email. How I can make new line. > "\n" seems to be not working. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visi

Re: [PHP] text email & new line

2004-11-02 Thread Richard Davey
Hello Jerry, Tuesday, November 2, 2004, 4:12:49 PM, you wrote: JS> I'm sending text email. How I can make new line. JS> "\n" seems to be not working. \n in a text (not HTML) email will do the trick most of the time, sometimes I see \r\n, but \n works for me nicely. Are you sure it's quoted prop

Re: [PHP] text email & new line

2004-11-02 Thread Greg Donald
On Tue, 2 Nov 2004 11:12:49 -0500, Jerry Swanson <[EMAIL PROTECTED]> wrote: > I'm sending text email. How I can make new line. > "\n" seems to be not working. Use \r\n instead of just \n. -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://destiney.com/ -- PHP General Mail