Re: Line Breaks in CFMail

2005-09-22 Thread Thomas Chiverton
On Wednesday 21 September 2005 21:05, Mark Leder wrote: > would I force a conditional line break in a plain text message? I didn't :-) -- Tom Chiverton Advanced ColdFusion Programmer ~| Logware (www.logware.us): a new and

RE: Line Breaks in CFMail

2005-09-21 Thread Mark Leder
>>How are you viewing the content to know if the line feeds are there? In an email client or are you outputting them to the page? I'm wanting to use this in an email message. When submitted as an email message, the chr(10) & chr(13) appear as literally chr(10) & chr(13). How would I force a cond

Re: Line Breaks in CFMail

2005-09-21 Thread S . Isaac Dealey
Wellk you're not actually using the crlf variable, but you really don't need it in this case... just outputting your content in cfsavecontent will generate the line feeds for you... How are you viewing the content to know if the line feeds are there? In an email client or are you outputting them to

Line Breaks in CFMail

2005-09-21 Thread Mark Leder
Hi all, I can't seem to get this CR/LF call to work inside (this is used for a plain text cfmail). It doesn't force the line break. What am I doing wrong? REQUEST.crlf = (#chr(13)# & #chr(10)#); // carriage return line feed This information was created on the Web Site Gift Request Form P

Re: line breaks in cfmail

2004-11-05 Thread Anders Green
At 02:37 PM 11/5/2004, you wrote: >If you are using Cf 6.1, you can use the 'wraptext' attribute of CFMAIL. You don't understand, he/I are not trying to wrap the text. The behavior we are describing is the text that we have hand-wrapped being converted back to "flowed". Anders +=

Re: line breaks in cfmail

2004-11-05 Thread Scott Stroz
If you are using Cf 6.1, you can use the 'wraptext' attribute of CFMAIL. On Thu, 4 Nov 2004 13:00:07 -0600, Matthew Smith <[EMAIL PROTECTED]> wrote: > Without using html(), how do you get a line break in a cfmail? I > thought just having the code set up with breaks would carry over to the > mail

Re: line breaks in cfmail

2004-11-05 Thread Jochem van Dieten
Anders Green wrote: > At 02:00 PM 11/4/2004, Matthew Smith wrote: >> >> Without using html(), how do you get a line break in a cfmail? I >> thought just having the code set up with breaks would carry over to the >> mail? > > What I'm finding strange is that with one mailserver, > it works exactl

Re: line breaks in cfmail

2004-11-05 Thread Anders Green
At 02:00 PM 11/4/2004, Matthew Smith wrote: >Without using html(), how do you get a line break in a cfmail? I >thought just having the code set up with breaks would carry over to the >mail? What I'm finding strange is that with one mailserver, it works exactly as you would think, plain text, no f

RE: line breaks in cfmail

2004-11-04 Thread John Stanley
#Chr(13)# -Original Message- From: Matthew Smith [mailto:[EMAIL PROTECTED] Sent: Thursday, November 04, 2004 2:00 PM To: CF-Talk Subject: line breaks in cfmail Without using html(), how do you get a line break in a cfmail? I thought just having the code set up with breaks would carry

line breaks in cfmail

2004-11-04 Thread Matthew Smith
Without using html(), how do you get a line break in a cfmail? I thought just having the code set up with breaks would carry over to the mail? Bill to: #qry_ordersBillingMethodGet.CardHoldersName# #qry_ordersBillingMethodGet.Address1# #qry_ordersBillingMethodGet.Address2# #qry_ordersBi

RE: line breaks in cfmail

2001-01-05 Thread Edward Chanter
e > -Original Message- > From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] > Sent: 5 January 2001 2:56 PM > To: CF-Talk > Subject: RE: line breaks in cfmail > > > Are you developing on a Mac by any chance? > > Benjamin S. Rogers > Web Developer, c4.net

RE: line breaks in cfmail

2001-01-05 Thread Benjamin S. Rogers
Message- From: lsellers [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 12:34 AM To: CF-Talk Subject: RE: line breaks in cfmail > Also, Some mail servers like qmail have a nasty habit of strip CR/LF pairs > into bare LFs. At which point, the client you are using may not be

RE: line breaks in cfmail

2001-01-05 Thread Benjamin S. Rogers
Are you developing on a Mac by any chance? Benjamin S. Rogers Web Developer, c4.net voice: (508) 240-0051 fax: (508) 240-0057 -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 04, 2001 1:43 PM To: CF-Talk Subject: RE: line breaks in cfmail I

RE: line breaks in cfmail

2001-01-05 Thread Edward Chanter
including the cfprocdir tag Interesting to see how some of the gurus attempted to solve the problem... > -Original Message- > From: Bud [mailto:[EMAIL PROTECTED]] > Sent: 4 January 2001 11:26 PM > To: CF-Talk > Subject: RE: line breaks in cfmail > > > O

RE: line breaks in cfmail

2001-01-04 Thread lsellers
> Also, Some mail servers like qmail have a nasty habit of strip CR/LF pairs > into bare LFs. At which point, the client you are using may not be savvy Evil, considering that's illegal under every RFC I've read. :) --min ~~ Structure your Cold

RE: line breaks in cfmail

2001-01-04 Thread Bud
On 1/4/01, Edward Chanter penned: >I'm assuming this is happening ins CF 4.5? > >If so, to fix it use the following code: > > > >Email Address: #form.email# >Business Name: #form.businessname# > > > >HtH Cool. Is that going to return an error in 4.01? I have a situation where I've had to code a

Re: line breaks in cfmail

2001-01-04 Thread sebastian palmigiani
Use #Chr(13)# > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 04, 2001 4:23 PM > To: CF-Talk > Subject: line breaks in cfmail > > > Hey all, > > I have this ongoing problem with line breaks not being r

Re: line breaks in cfmail

2001-01-04 Thread Billy Cravens
. Works fine for me. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 04, 2001 4:23 PM > To: CF-Talk > Subject: line breaks in cfmail > > Hey all, > > I have this ongoing problem with line breaks not being r

RE: line breaks in cfmail

2001-01-04 Thread Mark W. Breneman
-Original Message- From: Edward Chanter [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 04, 2001 10:49 AM To: CF-Talk Subject: RE: line breaks in cfmail "I'm assuming this is happening ins CF 4.5? If so, to fix it use the following code: Email Address: #form.email# Bus

RE: line breaks in cfmail

2001-01-04 Thread Mark W. Breneman
Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 04, 2001 12:25 PM To: CF-Talk Subject: Re: line breaks in cfmail Are you using HTML format? If you are you need to put in the breaks physically. If you are not then it should break automatically on the new lines

RE: line breaks in cfmail

2001-01-04 Thread Rick Lamb
: Joe Sheble aka Wizaerd [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 04, 2001 11:14 AM To: CF-Talk Subject: Re: line breaks in cfmail If you have the TYPE attribute to HTML, you'll beed to specify a break tag: <BR> At 09:22 AM 1/4/01 -0600, you wrote: >Hey all, > >I have

RE: line breaks in cfmail

2001-01-04 Thread Philip Arnold - ASP
> I have this ongoing problem with line breaks not being respecting when > formatting my email bodies using the cfmail tag. For example > something like this: > > > Email Address: #form.email# > Business Name: #form.businessname# > > > Is showing up like this when sent: > > Email Address: #f

RE: line breaks in cfmail

2001-01-04 Thread Benjamin S. Rogers
[mailto:[EMAIL PROTECTED]] Sent: Thursday, January 04, 2001 10:23 AM To: CF-Talk Subject: line breaks in cfmail Hey all, I have this ongoing problem with line breaks not being respecting when formatting my email bodies using the cfmail tag. For example something like this: Email Address

Re: line breaks in cfmail

2001-01-04 Thread Joe Sheble aka Wizaerd
If you have the TYPE attribute to HTML, you'll beed to specify a break tag:
At 09:22 AM 1/4/01 -0600, you wrote: >Hey all, > >I have this ongoing problem with line breaks not being respecting when >formatting my email bodies using the cfmail tag. For example something like >this: > > > >Ema

Re: line breaks in cfmail

2001-01-04 Thread Kevin Schmidt
ursday, January 04, 2001 9:22 AM Subject: line breaks in cfmail > Hey all, > > I have this ongoing problem with line breaks not being respecting when > formatting my email bodies using the cfmail tag. For example something like > this: > > > > Email Address: #form.email# >

Re: line breaks in cfmail

2001-01-04 Thread Jennifer
At 09:22 AM 1/4/01 -0600, you wrote: >Hey all, > >I have this ongoing problem with line breaks not being respecting when >formatting my email bodies using the cfmail tag. For example something like >this: > > > >Email Address: #form.email# >Business Name: #form.businessname# > > >Is showing up lik

RE: line breaks in cfmail

2001-01-04 Thread Katherine Maltby
message. Please notify us on +44 (0) 20 7387 8890 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 04 January 2001 15:23 To: CF-Talk Subject: line breaks in cfmail Hey all, I have this ongoing problem with line breaks not being respecting when formatting my email

RE: line breaks in cfmail

2001-01-04 Thread Michel Vuijlsteke
If your cfmail is set to send HTML, I guess you have to add a in there. Otherwise: no idea. Works fine for me. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 04, 2001 4:23 PM To: CF-Talk Subject: line breaks in cfmail Hey all, I have

RE: line breaks in cfmail

2001-01-04 Thread Edward Chanter
1 3:23 PM > To: CF-Talk > Subject: line breaks in cfmail > > > Hey all, > > I have this ongoing problem with line breaks not being respecting when > formatting my email bodies using the cfmail tag. For example > something like > this: > > > > Email A

line breaks in cfmail

2001-01-04 Thread Rick Lamb
Hey all, I have this ongoing problem with line breaks not being respecting when formatting my email bodies using the cfmail tag. For example something like this: Email Address: #form.email# Business Name: #form.businessname# Is showing up like this when sent: Email Address: #form.email# Bus