Re: [CF-Talk] Form Submission

2000-09-19 Thread Billy Cravens
> One last question would be formatting the output. The line break > doesn't work in my email client which isn't setup to use HTML email. Is it > possible to put a line break in some other way? CFMAIL will format your text as it's typed (plain text, not html).. so a line break in the code (b/w

RE: [CF-Talk] Form Submission

2000-09-19 Thread Gavin Myers
A longer cludgy way would be to put the before the Like this: #firstname# But as far as I know, the only form type that will not pass is a checkbox because it doesnt have a value for not-checked. A radio will work fine in place of check boxes, you just have to add that no, and

RE: [CF-Talk] Form Submission

2000-09-19 Thread Gavin Myers
Mark Warrick [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 19, 2000 1:22 PM To: [EMAIL PROTECTED] Subject: RE: [CF-Talk] Form Submission What's wrong is you can't embed the logic you're trying to embed into a CFMAIL tag. You've got to

RE: [CF-Talk] Form Submission

2000-09-19 Thread Mark Warrick
nal Message- > From: Peter Benoit [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 19, 2000 8:18 AM > To: '[EMAIL PROTECTED]' > Subject: RE: [CF-Talk] Form Submission > > > Yes! It worked, thank you. > > One last question would be formatting the outp

RE: [CF-Talk] Form Submission

2000-09-19 Thread Mark Warrick
sday, September 19, 2000 7:42 AM > To: '[EMAIL PROTECTED]' > Subject: RE: [CF-Talk] Form Submission > > > I put that in my cfmail tag and got an error: > > Error Diagnostic Information > Invalid tag nesting configuration > > A CFOUTPUT tag is nested in

RE: [CF-Talk] Form Submission

2000-09-19 Thread Mark Warrick
: [EMAIL PROTECTED] Business URL: http://www.fusioneers.com ICQ: 346566 -- > -Original Message- > From: Peter Benoit [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 19, 2000 6:51 AM > To: '[EMAIL PROTECTED]

RE: [CF-Talk] Form Submission

2000-09-19 Thread Peter Benoit
lto:[EMAIL PROTECTED]] * Sent: Tuesday, September 19, 2000 11:09 AM * To: [EMAIL PROTECTED] * Subject: Re: [CF-Talk] Form Submission * * * Right, that's what I get for posting a snippet out of context. Just * remove the and . * * -David * * On Tue, 19 Sep 2000 10:43:25 -0500 [EMAIL

Re: [CF-Talk] Form Submission

2000-09-19 Thread David Shadovitz
it [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 19, 2000 9:42 AM > To: '[EMAIL PROTECTED]' > Subject: RE: [CF-Talk] Form Submission > > > I put that in my cfmail tag and got an error: > > Error Diagnostic Information > Invalid tag nesting configuration >

Re: [CF-Talk] Form Submission

2000-09-19 Thread JustinMacCarthy
Yes ~Justin - Original Message - From: "Peter Benoit" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 19, 2000 3:27 PM Subject: RE: [CF-Talk] Form Submission > Not sure I understand this. Is form.fieldnames a preset list of all the > f

RE: [CF-Talk] Form Submission

2000-09-19 Thread Top-Link Tech (John Ceci)
CFMAIL by itself does a CFOUTPUT... -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 19, 2000 9:42 AM To: '[EMAIL PROTECTED]' Subject: RE: [CF-Talk] Form Submission I put that in my cfmail tag and got an error: Error Diagnostic I

RE: [CF-Talk] Form Submission

2000-09-19 Thread Peter Benoit
outer tag does not specify a query to loop over or a group to process. What did I do wrong? * -Original Message- * From: David Shadovitz [mailto:[EMAIL PROTECTED]] * Sent: Tuesday, September 19, 2000 10:26 AM * To: [EMAIL PROTECTED] * Subject: Re: [CF-Talk] Form Submission

RE: [CF-Talk] Form Submission

2000-09-19 Thread Peter Benoit
Submission * * * Something like * * * #idx# = #evaluate(idx)# * * * * * ~Justin * * - Original Message - * From: "Peter Benoit" <[EMAIL PROTECTED]> * To: <[EMAIL PROTECTED]> * Sent: Tuesday, September 19, 2000 2:51 PM * Subject: [CF

Re: [CF-Talk] Form Submission

2000-09-19 Thread David Shadovitz
Peter, You'll probably get several responses suggesting that you use FORM.FieldNames. Be aware, though, that some form fields are passed even if they have no value, so you may want to include a check for that: #field#: #Evaluate(field)# -David (hoping I didn't omit a necess

Re: [CF-Talk] Form Submission

2000-09-19 Thread JustinMacCarthy
Something like #idx# = #evaluate(idx)# ~Justin - Original Message - From: "Peter Benoit" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 19, 2000 2:51 PM Subject: [CF-Talk] Form Submission > I want to email the results of a rat

[CF-Talk] Form Submission

2000-09-19 Thread Peter Benoit
I want to email the results of a rather large form to someone. I can't verify that all the form fields have been filled out prior to the submission (no client side scripting allowed), so how can I do this without a huge number of : #form.whatever# I end up typing this over and over for each for