Re: isEmail vs cfmail tag

2007-10-10 Thread Tom Chiverton
On Tuesday 09 Oct 2007, [EMAIL PROTECTED] wrote: It's perfectly possible for a validly formatted address to cause an exception when you actually try to email it. Not so sure about that, [EMAIL PROTECTED] just off the top of my head. -- Tom Chiverton Helping to proactively maintain

Re: isEmail vs cfmail tag

2007-10-10 Thread Claude Schneegans
[EMAIL PROTECTED] just off the top of my head. This will cause an exception in your template only if is the spooler is deactivated in the CF server, something I wouldn't recommend for mass mailing. Otherwise, the error will occur in the service which sends messages from the spool, which is

Re: isEmail vs cfmail tag

2007-10-10 Thread Claude Schneegans
[EMAIL PROTECTED] just off the top of my head. H, by the way, isValid(email, [EMAIL PROTECTED]) returns no, so according to this discussion, this address should never be used in CFMAIL in the first time. ;-) -- ___ REUSE CODE! Use custom tags; See

Re: isEmail vs cfmail tag

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: This will cause an exception in your template only if is the spooler is deactivated in the CF server, Uh huh. -- Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and ColdSpring, and has done some Flex work ? Would you

Re: isEmail vs cfmail tag

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] just off the top of my head. H, by the way, isValid(email, [EMAIL PROTECTED]) returns no, so according to this discussion, this address should never be used in CFMAIL in the first time. ;-) Just one more case where

isEmail vs cfmail tag

2007-10-09 Thread Les Mizzell
I've got a newsletter and email list management admin system set up for a client. There's a number of ways they can get email addresses into a specific list - enter through a form, import from Excel ... I've got validation (regEX) on the input side to try and filter out bad addresses.

Re: isEmail vs cfmail tag

2007-10-09 Thread Christopher Vigliotti
can you provide more detail on how it's choking and what the output of the #mailLIST.sendTO# variable is? On 10/9/07, Les Mizzell [EMAIL PROTECTED] wrote: I've got a newsletter and email list management admin system set up for a client. There's a number of ways they can get email addresses

Re: isEmail vs cfmail tag

2007-10-09 Thread JediHomer
What version of CF are you running, as CF7+ has an isValid() function that should work... cfif isValid(email, mailLIST.sendTO) HTH On 09/10/2007, Les Mizzell [EMAIL PROTECTED] wrote: I've got a newsletter and email list management admin system set up for a client. There's a number of ways

Re: isEmail vs cfmail tag

2007-10-09 Thread Tom Chiverton
On Tuesday 09 Oct 2007, [EMAIL PROTECTED] wrote: What version of CF are you running, as CF7+ has an isValid() function that should work... cfif isValid(email, mailLIST.sendTO) Although that only performs a syntax check. It's perfectly possible for a validly formatted address to cause an

Re: isEmail vs cfmail tag

2007-10-09 Thread J.J. Merrick
If you are on MX7 do IsValid with the email attribute. I have found that whatever logic IsValid uses is the same as what cfmail will bomb on. J.J. On 10/9/07, Les Mizzell [EMAIL PROTECTED] wrote: I've got a newsletter and email list management admin system set up for a client. There's a

Re: isEmail vs cfmail tag

2007-10-09 Thread Claude Schneegans
It's perfectly possible for a validly formatted address to cause an exception when you actually try to email it. Not so sure about that, since the message is not sent by the CF server it self. If there is an exception, it can be for any other reason, like an invalid value in some other

RE: isEmail vs cfmail tag

2007-10-09 Thread Robert Rawlins - Think Blue
: isEmail vs cfmail tag It's perfectly possible for a validly formatted address to cause an exception when you actually try to email it. Not so sure about that, since the message is not sent by the CF server it self. If there is an exception, it can be for any other reason, like an invalid value

RE: isEmail vs cfmail tag

2007-10-09 Thread Russ
(unless maybe the emails are not set to be spooled in the admin?). Russ -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 09, 2007 11:55 AM To: CF-Talk Subject: Re: isEmail vs cfmail tag It's perfectly possible for a validly formatted

Re: isEmail vs cfmail tag

2007-10-09 Thread Claude Schneegans
I don't believe it will cause an exception. It can't. Anyway the template which sent the message cannot get an exception since it is not running anymore. The CFMAIL tag only drops a copy of the message in the spool. Now I think the spool may be deactivated in the server. Don't know what

Re: isEmail vs cfmail tag

2007-10-09 Thread Rick Root
On 10/9/07, Russ [EMAIL PROTECTED] wrote: Actually, if the email is being sent to an address hosted at the email server through which the email is being sent, and the server replies saying something like 'This email doesn't exist', CF will fail the mail and put it in the undeliverable folder.

Re: isEmail vs cfmail tag

2007-10-09 Thread Rick Root
On 10/9/07, Claude Schneegans [EMAIL PROTECTED] wrote: I don't believe it will cause an exception. It can't. Anyway the template which sent the message cannot get an exception since it is not running anymore. The CFMAIL tag only drops a copy of the message in the spool. Yes, it can, if

Re: isEmail vs cfmail tag

2007-10-09 Thread Matt Robertson
Chasing the perfect regex in this circumstance is like trying to herd cats. Figure something screwy will always come up and meow at you from behind, but if you error-proof your app no matter what shows up you will chug along. I carved the example below from one of my mail trickler tutorials. I

Re: isEmail vs cfmail tag

2007-10-09 Thread Claude Schneegans
Yes, it can, if spooling is disabled. the cfmail tag will throw whatever error message it gets from the remote SMTP server. Ok, but not really recommended for mass mailing. -- ___ REUSE CODE! Use custom tags; See

RE: isEmail vs cfmail tag

2007-10-09 Thread Russ
Hmm... I though CF enterprise boasted 2 million emails per hour only with spooling disabled... Russ -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 09, 2007 3:45 PM To: CF-Talk Subject: Re: isEmail vs cfmail tag Yes, it can

Re: isEmail vs cfmail tag

2007-10-09 Thread Claude Schneegans
I though CF enterprise boasted 2 million emails per hour only with spooling disabled... On the same destination server, may be. I just don't think this is possible. Some servers will take seconds before they send an answer. -- ___ REUSE CODE! Use custom