Re: Very basic question about <cfmail

2007-09-17 Thread Tom Chiverton
On Friday 14 Sep 2007, [EMAIL PROTECTED] wrote: > Tom Chiverton wrote: > > I've not tested on CF, but in kRegExpEditor, <(.)+> would match that > > portion of the string, so I'd expect it to vanish as indicated. > <(.|\n)+?>, or more spelled out to be safe, Bloody Exchange mail server that isn't.

Re: Very basic question about &amp;lt;cfmail

2007-09-15 Thread NUGROHO NOTO
Hi Guys... Thanks for all your help. at last.. Yes.. I can solve the problem , after I change the character encoding. to "shift_JIS" Again I really appreciate all your kindness. >The code I sent you via this forum is actual working production code >that we use in many places daily. Maybe the

Re: Very basic question about <cfmail

2007-09-14 Thread Scott Weikert
Tom Chiverton wrote: > I've not tested on CF, but in kRegExpEditor, <(.)+> would match that portion > of the string, so I'd expect it to vanish as indicated. > Ahh - because that's not what I sent. I wonder if it didn't get mucked with in transition. <(.|\n)+?>, or more spelled out to be safe

Re: Very basic question about &lt;cfmail

2007-09-14 Thread Wil Genovese
The code I sent you via this forum is actual working production code that we use in many places daily. Maybe the difference can be with character sets? Wil Genovese One man with courage makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. NUGR

Re: Very basic question about &lt;cfmail

2007-09-14 Thread NUGROHO NOTO
Hi Thanks for all suggestion... but still I cannot find solution. Okay... let me describe once again. We have 3 kinds of members... type 1 : want to receive news by ordinary email (html) type 2 : want to receive news by cellphone email (Plain text only) type 3 : by fax. (later.. will try to sen

Re: Very basic question about <cfmail

2007-09-14 Thread Tom Chiverton
On Thursday 13 Sep 2007, [EMAIL PROTECTED] wrote: > Tom Chiverton wrote: > > "strip out all content that starts with a ." :-) > > Heh, you saying the less-than character got stripped for you? Or that > the regex is goofed? :/ I've not tested on CF, but in kRegExpEditor, <(.)+> would match that por

Re: Very basic question about <cfmail

2007-09-13 Thread Scott Weikert
NUGROHO NOTO wrote: > but still the plain text email I got... all text are continue without break. > Hmm... I must have missed something here... > > That's because HTML text wraps based on where it is in the HTML page. Plain text, in plain text emails, doesn't wrap. You need to put in your ow

Re: Very basic question about <cfmail

2007-09-13 Thread [EMAIL PROTECTED]
07 17:25 -To: "CF-Talk" -Subj: Re: Very basic question about &lt;cfmail - -Thanks. -I have tried using your function. -replacing with CRLF (which is chr(13) & chr(10);) - -but still the plain text email I got... all text are continue without b

Re: Very basic question about <cfmail

2007-09-13 Thread NUGROHO NOTO
Thanks. I have tried using your function. replacing with CRLF (which is chr(13) & chr(10);) but still the plain text email I got... all text are continue without break. Hmm... I must have missed something here... ~| ColdFusio

Re: Very basic question about

2007-09-13 Thread Wil Genovese
age makes a majority. -Andrew Jackson A fine is a tax for doing wrong. A tax is a fine for doing well. NUGROHO NOTO wrote: > I am sorry if this is the wrong place to post very basic question like this. > > my script is like this > TO="#email#" > FROM="#webma

Re: Very basic question about &lt;cfmail

2007-09-13 Thread Wil Genovese
I've been busy all morning and I haven't had time to respond to this. Most of the time to prevent your email from be caught as SPAM you want send either plain text or multi-part Test and HTML. If you send just as HTML that will start to trigger in SPAM filters. I user this function to create a

Re: Very basic question about <cfmail

2007-09-13 Thread Scott Weikert
Tom Chiverton wrote: > "strip out all content that starts with a ." :-) > > Heh, you saying the less-than character got stripped for you? Or that the regex is goofed? :/ ~| Get the answers you are looking for on the ColdFusion

Re: Very basic question about &amp;lt;cfmail

2007-09-13 Thread Seamus Campbell
then use #br# in cfmail (If I understood your question correctly) Seamus > Thanks all, > can you tell me the correct carriage return character should I use... > without making this email content just displaying the code ? > for example.. if I replace with \R... it will just show \R > inste

Re: Very basic question about &lt;cfmail

2007-09-13 Thread NUGROHO NOTO
Thanks all, can you tell me the correct carriage return character should I use... without making this email content just displaying the code ? for example.. if I replace with \R... it will just show \R instead making a new line. Sorry ... for my stupidity question. ~~

Re: Very basic question about <cfmail

2007-09-13 Thread Tom Chiverton
On Thursday 13 Sep 2007, [EMAIL PROTECTED] wrote: > Regex to use: ReReplaceNoCase(yourVar, "<(.|\n)+?>", "", "ALL") should > strip out all content that starts with a < to the next occuring >. "strip out all content that starts with a ." :-) -- Tom Chiverton Helping to elementarily utilize back-

Re: Very basic question about <cfmail

2007-09-13 Thread Scott Weikert
NUGROHO NOTO wrote: > I am looking for those script which can strip the HTML part.. but still can > retain the carriage return (otherwise my text will just continue without > break) > anybody knows where we can get / buy this custom tags ? > > Sounds like a three-step thing to me. First, fin

Re: Very basic question about <cfmail

2007-09-13 Thread James Holmes
It does. However, html email is also sent with a plain text version, which is what non-html enabled client will read. On 9/13/07, NUGROHO NOTO <[EMAIL PROTECTED]> wrote: > Hi Mason. > Thanks... at first... I thought type="HTML" means to send email as an HTML. -- mxAjax / CFAjax docs and other us

Re: Very basic question about <cfmail

2007-09-13 Thread NUGROHO NOTO
Hi Mason. Thanks... at first... I thought type="HTML" means to send email as an HTML. obviously I was wrong... Now... it works.. Thanks again. regards. ~| Get the answers you are looking for on the ColdFusion Labs Forum direc

RE: Very basic question about

2007-09-13 Thread John Mason
dFusion 8 Enterprise hosting FREE Subversion hosting -Original Message- From: NUGROHO NOTO [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 5:01 AM To: CF-Talk Subject: Very basic question about #content# The content of the email is written in database (in html format) be

Re: Very basic question about <cfmail

2007-09-13 Thread NUGROHO NOTO
Thanks for all the suggestion. sorry forget to mention... I could not use HTML version... because most of my customer (in Japan) read their email using their cell phone (cdma)... and some of these service do not accept html version... so... that's why we have to send a plain version from the ht

RE: Very basic question about

2007-09-13 Thread William Seiter
ject: Very basic question about #content# The content of the email is written in database (in html format) because it is used for other purpose, viewed online by customers who want to read it online on our website) but when I send email .. and the content is outputing the query of those co

Re: Very basic question about

2007-09-13 Thread James Holmes
e to post very basic question like this. > > my script is like this > TO="#email#" > FROM="#webmaster#" > SUBJECT="#subject#"> > > > #content# > > > The content of the email is written in database (in html format) because it

Very basic question about

2007-09-13 Thread NUGROHO NOTO
I am sorry if this is the wrong place to post very basic question like this. my script is like this #content# The content of the email is written in database (in html format) because it is used for other purpose, viewed online by customers who want to read it online on our website

RE: cfapplication: really basic question

2003-03-12 Thread Owens, Howard
of global variables, it's best to use CFSCRIPT request.myDSN='datasource'; request.myEmail='[EMAIL PROTECTED]'; H. > -Original Message- > From: Austin Govella [SMTP:[EMAIL PROTECTED] > Sent: Tuesday, March 04, 2003 10:22 AM > To:

RE: cfapplication: really basic question

2003-03-05 Thread Darren Adams
a [mailto:[EMAIL PROTECTED] > Sent: 04 March 2003 18:22 > To: CF-Talk > Subject: cfapplication: really basic question > > I'm setting app wide variables for DSNs in Application.cfm. > > My book says you set them after the CFAPPLICATION tag, but it doesn't say > there&

RE: cfapplication: really basic question

2003-03-04 Thread Barney Boisvert
MAIL PROTECTED] > Sent: Tuesday, March 04, 2003 10:22 AM > To: CF-Talk > Subject: cfapplication: really basic question > > > I'm setting app wide variables for DSNs in Application.cfm. > > My book says you set them after the CFAPPLICATION tag, but it doesn't sa

RE: cfapplication: really basic question

2003-03-04 Thread Mosh Teitelbaum
CF-Talk > Subject: cfapplication: really basic question > > > I'm setting app wide variables for DSNs in Application.cfm. > > My book says you set them after the CFAPPLICATION tag, but it doesn't say > there's an end tag. I was worried the app might not k

RE: cfapplication: really basic question

2003-03-04 Thread Dave Watts
> So, I have: > >name="blah"> > > > > Is that all I need? Yes, that's all you need. The CFAPPLICATION tag doesn't have an end tag. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

cfapplication: really basic question

2003-03-04 Thread Austin Govella
I'm setting app wide variables for DSNs in Application.cfm. My book says you set them after the CFAPPLICATION tag, but it doesn't say there's an end tag. I was worried the app might not know when varialbles stoppped being app variables... So, I have: Is that all I need? It seems like you'd

RE: basic question

2002-11-12 Thread Tim Laureska
Browser is IE6.0 -Original Message- From: Adam Reynolds [mailto:adam@;craze.co.uk] Sent: Tuesday, November 12, 2002 4:41 AM To: CF-Talk Subject: RE: basic question Your browser might be interpreting &or as a character (like  ). This has happened to me in the past with specific vers

RE: basic question

2002-11-12 Thread Adam Reynolds
Your browser might be interpreting &or as a character (like  ). This has happened to me in the past with specific versions of browsers > -Original Message- > From: Tim Laureska [mailto:hometeam@;goeaston.net] > Sent: 12 November 2002 02:05 > To: CF-Talk > Subject:

RE: basic question

2002-11-11 Thread Mosh Teitelbaum
> -Original Message- > From: Tim Laureska [mailto:hometeam@;goeaston.net] > Sent: Monday, November 11, 2002 9:05 PM > To: CF-Talk > Subject: RE: basic question > > > Thanks Dan and Howie for some reason, using "&" worked but "&or"

RE: basic question

2002-11-11 Thread Tim Laureska
Thanks Dan and Howie for some reason, using "&" worked but "&or" didn't -Original Message- From: Howie Hamlin [mailto:howie@;coolfusion.com] Sent: Monday, November 11, 2002 8:22 PM To: CF-Talk Subject: Re: basic question Sure, try: listing page

RE: basic question

2002-11-11 Thread Mike Chambers
try: listing page is that what you were trying to do? mike chambers [EMAIL PROTECTED] > -Original Message- > From: Tim Laureska [mailto:hometeam@;goeaston.net] > Sent: Monday, November 11, 2002 8:10 PM > To: CF-Talk > Subject: basic question > > > Is it

RE: basic question

2002-11-11 Thread Mark A. Kruger - CFG
Tim, Try listing page -Original Message- From: Tim Laureska [mailto:hometeam@;goeaston.net] Sent: Monday, November 11, 2002 7:10 PM To: CF-Talk Subject: basic question Is it possible to do something like this to pass multiple variables thru a link, because it doesn't work an

Re: basic question

2002-11-11 Thread Howie Hamlin
olfusion.com/imssecomparison.cfm - Original Message - From: "Tim Laureska" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, November 11, 2002 8:09 PM Subject: basic question > Is it possible to do something like this to pass multiple v

Re: basic question

2002-11-11 Thread Dan Blickensderfer
You need to place an & between your variables and remove your single quotes. Like this: listing page Dan - Original Message - From: "Tim Laureska" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, November 11, 2002 8:09 PM Subject:

basic question

2002-11-11 Thread Tim Laureska
Is it possible to do something like this to pass multiple variables thru a link, because it doesn't work and I'm wondering if its just an easy syntax Problem: listing page Tim ~| Archives: http://www.houseoffusion.com/cf_l

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
From: Clint Tredway [mailto:ctredway@;fishermenstudios.com] Sent: Thursday, October 31, 2002 8:44 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query Ya, that's what I get for thinking on no sleep.. I corrected it :) -Original Message- From: Tony Weeg [m

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Everett, Al
Errr... .. > -Original Message- > From: Tim Laureska [mailto:hometeam@;goeaston.net] > Sent: Thursday, October 31, 2002 8:27 AM > To: CF-Talk > Subject: basic question - testing for no reuslts from query > > > I'm ashamed to say I've been banging my h

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
its a pretty bug IF though, is there rumours banting around that it is to become a typed language... -Original Message- From: Stephen Moretti [mailto:stephen@;cfmaster.co.uk] Sent: 31 October 2002 14:07 To: CF-Talk Subject: Re: basic question - testing for no reuslts from query Neil

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
sorry :-) I like to use and abuse it "typelessness" -Original Message- From: Stephen Moretti [mailto:stephen@;cfmaster.co.uk] Sent: 31 October 2002 14:07 To: CF-Talk Subject: Re: basic question - testing for no reuslts from query Neil!!! Slap wristies!!! ;o)

Re: basic question - testing for no reuslts from query

2002-10-31 Thread Stephen Moretti
Neil!!! Slap wristies!!! ;o) > or just : > > > record count is numeric not boolean! Yes OK, so CF isn't typed _yet_ and will take anything other than 0 to be true, but it would be better to write it correctly, so your application is more readable and won't fall over if CF does become a typed la

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tim Laureska
Many thanks for the responses... checking for query.recordcount EQ 0 works fine... just didn't know the syntax -Original Message- From: Clint Tredway [mailto:ctredway@;fishermenstudios.com] Sent: Thursday, October 31, 2002 8:44 AM To: CF-Talk Subject: RE: basic question - testing f

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
Ya, that's what I get for thinking on no sleep.. I corrected it :) -Original Message- From: Tony Weeg [mailto:tony@;navtrak.net] Sent: Thursday, October 31, 2002 7:38 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query clint. this is the opposite of wh

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
Man, I have been up way to long ;) if query.recordcount eq 0 no records found -Original Message- From: Clint Tredway [mailto:ctredway@;fishermenstudios.com] Sent: Thursday, October 31, 2002 7:30 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
clint. this is the opposite of what he wanted, and doesn't make sensecheck your logic :) mailto:ctredway@;fishermenstudios.com] Sent: Thursday, October 31, 2002 8:30 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query mailto:hometeam@;goeaston.net]

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
or just : or you could use ListLen(ValueList(query,",")) -Original Message- From: Clint Tredway [mailto:ctredway@;fishermenstudios.com] Sent: 31 October 2002 13:30 To: CF-Talk Subject: RE: basic question - testing for no reuslts from query mailto:hometeam@;goeaston.

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
: Thursday, October 31, 2002 8:27 AM To: CF-Talk Subject: basic question - testing for no reuslts from query I'm ashamed to say I've been banging my head on this for an hour. what is a simple way to code a statement that displays a message when a query produces no results.. like:

RE: basic question - testing for no results from query

2002-10-31 Thread Timothy Heald
: Tim Laureska [mailto:hometeam@;goeaston.net] Sent: Thursday, October 31, 2002 8:27 AM To: CF-Talk Subject: basic question - testing for no reuslts from query I'm ashamed to say I've been banging my head on this for an hour. what is a simple way to code a statement that displays a messa

Re: basic question - testing for no reuslts from query

2002-10-31 Thread Jochem van Dieten
Tim Laureska wrote: > I'm ashamed to say I've been banging my head on this for an hour. what > is a simple way to code a statement that displays a message when a > query produces no results.. like: Use queryname.recordcount Jochem ~~~

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Adrian Lynch
No results #results# -Original Message- From: Tim Laureska [mailto:hometeam@;goeaston.net] Sent: 31 October 2002 13:27 To: CF-Talk Subject: basic question - testing for no reuslts from query I'm ashamed to say I've been banging my head on this for an hour. what is a sim

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
mailto:hometeam@;goeaston.net] Sent: Thursday, October 31, 2002 7:27 AM To: CF-Talk Subject: basic question - testing for no reuslts from query I'm ashamed to say I've been banging my head on this for an hour. what is a simple way to code a statement that displays a message wh

basic question - testing for no reuslts from query

2002-10-31 Thread Tim Laureska
I'm ashamed to say I've been banging my head on this for an hour. what is a simple way to code a statement that displays a message when a query produces no results.. like: NO RESULTS #RESULTS# I'm looking for what the "blah, blah" would be?? Tim Laureska ~~~

Re: basic question

2001-05-23 Thread sebastian palmigiani
Yes they do. I call an encrypted tag like which does not need any attributes and what gets outputted is the encryption. Sebastian on 5/23/01 4:04 AM, Thomas Chiverton at [EMAIL PROTECTED] wrote: >> I downloaded an encrypted custom tag. When I make a call to >> the tag it shows >> up all encry

RE: basic question

2001-05-23 Thread Thomas Chiverton
> I downloaded an encrypted custom tag. When I make a call to > the tag it shows > up all encrypted on the output page. How do you make an encrypted tag > display correctly. Do your other ColdFusion files work OK ? ~~ Structure your ColdFusion co

RE: Very basic question on formsII

2000-05-01 Thread Nagesh Kumar Deva
try this:- in doesnot work code, put type="hidden" instead of "textbox" nagesh -Original Message- From: aslam bajaria [mailto:[EMAIL PROTECTED]] Sent: Monday, May 01, 2000 11:03 PM To: [EMAIL PROTECTED] Subject: Very basic question on formsII Sorry, that was a t

Very basic question on formsII

2000-05-01 Thread aslam bajaria
ROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, April 28, 2000 3:56 PM > Subject: Very basic question on forms > > > > Can someone tell me why the following code works > and > > the code following it does not. > > > > works**

Re: Very basic question on forms

2000-04-29 Thread Yvette Ingram
rom: aslam bajaria <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 28, 2000 4:56 PM Subject: Very basic question on forms > Can someone tell me why the following code works and > the code following it does not. > > works***

Re: Very basic question on forms

2000-04-28 Thread Fred T. Sanders
e - From: "aslam bajaria" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 28, 2000 3:56 PM Subject: Very basic question on forms > Can someone tell me why the following code works and > the code following it does not. > > works

Very basic question on forms

2000-04-28 Thread aslam bajaria
Can someone tell me why the following code works and the code following it does not. works*** and It works fine the way above. *does not work*** What I am trying to do is the following and it keeps going to the same fuseaction: