RE: Personalizing a CFLoop - validation error- fixed

2009-01-05 Thread cfcom
I separated the Recipients and Senders into two different tables and the validation error resolved. Thanks so much! -Original Message- From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] Sent: 2009-01-05 4:28 PM To: cf-talk Subject: RE: Personalizing a CFLoop - validation error

RE: Personalizing a CFLoop - validation error

2009-01-05 Thread cfcom
-Original Message- From: b...@bradwood.com [mailto:b...@bradwood.com] Sent: 2009-01-05 4:38 PM To: cf-talk Subject: RE: Personalizing a CFLoop - validation error Agreed. If you are having problems finding the offending record, just wrap a try around the cfmail and output that record in the catch.

RE: Personalizing a CFLoop - validation error

2009-01-05 Thread brad
your site, but now it sounds more like a newsletter feature. If you know your E-mails are all valid, the cfmail tag actually has a query attribute for the purpose of sending out an E-mail to everyone in a resultset. ~Brad Original Message Subject: RE: Personalizin

RE: Personalizing a CFLoop - cfmail validation error

2009-01-05 Thread cfcom
No still throwing validation error. For the most part the application is now working - if I can only eliminate the error. -Original Message- From: Rob Parkhill [mailto:robert.parkh...@gmail.com] Sent: 2009-01-05 4:20 PM To: cf-talk Subject: Re: Personalizing a CFLoop - validation error

RE: Personalizing a CFLoop - validation error

2009-01-05 Thread webmaster
: Personalizing a CFLoop - validation error They all have email addresses, I just don't know why it's throwing the validation error on the CFMail 'TO'. I want to send out to about 100 different addresses, is there

RE: Personalizing a CFLoop - validation error

2009-01-05 Thread cfcom
Ok, I'll try. -Original Message- From: Rob Parkhill [mailto:robert.parkh...@gmail.com] Sent: 2009-01-05 4:20 PM To: cf-talk Subject: Re: Personalizing a CFLoop - validation error I know this will sound odd, but put them on separate lines... so this: becomes this: I have a

Re: Personalizing a CFLoop - validation error

2009-01-05 Thread Rob Parkhill
I know this will sound odd, but put them on separate lines... so this: becomes this: I have always found that with CFMAIL, it likes it better when the arguments are on different lines. HTH Rob ~| Adobe® ColdFusion® 8 sof

RE: Personalizing a CFLoop - validation error

2009-01-05 Thread cfcom
: 2009-01-05 4:07 PM To: cf-talk Subject: RE: Personalizing a CFLoop - validation error How about amending your query to only return results that have an email address? -Original Message- From: cfcom [mailto:cf...@aceligent.com] Sent: Monday, January 05, 2009 3:01 PM To: cf-talk Subject:

RE: Personalizing a CFLoop - validation error

2009-01-05 Thread Billy Cox
How about amending your query to only return results that have an email address? -Original Message- From: cfcom [mailto:cf...@aceligent.com] Sent: Monday, January 05, 2009 3:01 PM To: cf-talk Subject: RE: Personalizing a CFLoop - validation error I added four columns to database

RE: Personalizing a CFLoop - validation error

2009-01-05 Thread cfcom
webmas...@pegweb.com [mailto:webmas...@pegweb.com] Sent: 2009-01-05 3:17 PM To: cf-talk Subject: RE: Personalizing a CFLoop I would just do something like this then. SELECT * FROM Recipients #sender_date# Dear #GetRecipients.Name# T

RE: Personalizing a CFLoop

2009-01-05 Thread webmaster
# #sender_city#, #sender_state# #sender_zip# #sender_email# -Original Message- From: cfcom [mailto:cf...@aceligent.com] Sent: Monday, January 05, 2009 2:21 PM To: cf-talk Subject: RE: Personalizing a CFLoop Yes, it is stored. I can store form_sender and recipients if

RE: Personalizing a CFLoop

2009-01-05 Thread webmaster
# #sender_city#, #sender_state# #sender_zip# #sender_email# -Original Message- From: cfcom [mailto:cf...@aceligent.com] Sent: Monday, January 05, 2009 2:21 PM To: cf-talk Subject: RE: Personalizing a CFLoop Yes, it is stored. I can store form_sender and recipients if

Re: Personalizing a CFLoop

2009-01-05 Thread Rob Parkhill
rstname# #sender_lastname# > > > > -Original Message- > From: Rob Parkhill [mailto:robert.parkh...@gmail.com] > Sent: 2009-01-05 2:08 PM > To: cf-talk > Subject: Re: Personalizing a CFLoop > > Well I am sure that there is a more elegant REGEX solution, but y

RE: Personalizing a CFLoop

2009-01-05 Thread cfcom
is my message to the recipient. Yours truly, #sender_firstname# #sender_lastname# -Original Message- From: Rob Parkhill [mailto:robert.parkh...@gmail.com] Sent: 2009-01-05 2:08 PM To: cf-talk Subject: Re: Personalizing a CFLoop Well I am sure

RE: Personalizing a CFLoop

2009-01-05 Thread brad
Lists are pretty one-dimensional. They basically just store a single string at each index (and I don't really like lists in lists). What you have is groupings of related data. (name, e-mail) I would graduate up to a two-dimensional array or a struct. Or you could get all kinds of fancy an crea

RE: Personalizing a CFLoop

2009-01-05 Thread cfcom
Yes, it is stored. I can store form_sender and recipients if necessary -Original Message- From: webmas...@pegweb.com [mailto:webmas...@pegweb.com] Sent: 2009-01-05 2:13 PM To: cf-talk Subject: RE: Personalizing a CFLoop Is the recipient data stored in a table by chance? -Original

RE: Personalizing a CFLoop

2009-01-05 Thread webmaster
Is the recipient data stored in a table by chance? -Original Message- From: cfcom [mailto:cf...@aceligent.com] Sent: Monday, January 05, 2009 2:01 PM To: cf-talk Subject: Personalizing a CFLoop CFLoop Problem: I need to take the contents a visitor enters into our form and use i

Re: Personalizing a CFLoop

2009-01-05 Thread Rob Parkhill
Well I am sure that there is a more elegant REGEX solution, but you can always do a FIND and then a LEFT so: I am sure someone will post something more elegant, but that will work. Rob ~| Adobe® ColdFusion® 8 software 8 is

Re: Personalizing a CFLoop

2009-01-05 Thread Jason Fisher
Dear #recipName#, >CFLoop Problem: > I need to take the contents a visitor enters into our form and use >it to send out personalized emails to several recipients. How do I set up >the cfloop so that it sends a unique email to each recipient, personalizes >the opening sentence and