Re: Line Breaks

2009-11-23 Thread Magnus Bäck
On Monday, November 23, 2009 at 19:39 CET, Susan Day wrote: > On Mon, Nov 23, 2009 at 1:30 PM, Bradley Giesbrecht < > bradley.giesbre...@gmail.com> wrote: > > > I'm not sure what you are doing. I use '%0A' for html mailto links. > > That didn't work for me. Here's an example line from my cod

Re: Line Breaks

2009-11-23 Thread Susan Day
On Mon, Nov 23, 2009 at 1:30 PM, Bradley Giesbrecht < bradley.giesbre...@gmail.com> wrote: > I'm not sure what you are doing. I use '%0A' for html mailto links. > That didn't work for me. Here's an example line from my code: msg = 'Here is the order from %s:%0A%0A %s' % (string.replace(client,

Re: Line Breaks

2009-11-23 Thread /dev/rob0
> On Nov 23, 2009, at 10:14 AM, Susan Day wrote: > >How do I write line breaks in a message? I've tried the standard > >\n but they're ignored. On Mon, Nov 23, 2009 at 10:30:27AM -0800, Bradley Giesbrecht wrote: > I'm not sure what you are doing. And in any case, I cannot see how it would be on t

Re: Line Breaks

2009-11-23 Thread Bradley Giesbrecht
I'm not sure what you are doing. I use '%0A' for html mailto links. Here is an example of some sql I use to build them: CONCAT_WS('','',t1.name_last,'&Body=%0A%0ASincerely,%0A" . $fullname . "%0A \">',t1.email,'') as email // Brad On Nov 23, 2009, at 10:14 AM, Susan Day wrote: Hi; How do