Re: Handling invalid recipient in mailing list

2015-04-04 Thread anene.quorium
Hi guys, I havehave Sent from Samsung tablet Mike K afpwebwo...@gmail.com wrote: You probably know already, but I'll say it just in case ... you can rarely have a 100% clean list. I have found that even after you just clean up a list, your next mailing will have rejects in it.   Even if

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Dave Long
is most attractive. Thanks again. Dave -Original Message- From: William Seiter [mailto:will...@seiter.com] Sent: Thursday, April 2, 2015 7:32 PM To: cf-talk Subject: RE: Handling invalid recipient in mailing list Dave, You could have your code 'automatically' scrub the list and use a 'log

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Russ Michaels
of not disturbing subscribers unnecessarily is most attractive. Thanks again. Dave -Original Message- From: William Seiter [mailto:will...@seiter.com] Sent: Thursday, April 2, 2015 7:32 PM To: cf-talk Subject: RE: Handling invalid recipient in mailing list Dave, You could have your code

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
The CFTRY and CFCATCH method described earlier is a great method for a partial scrub. That method will scrub those email addresses which are malformed or have invalid syntax. That's a great start, but there are two additional things you should do as well: 1. Use the FAILTO feature of

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
I never use anything but Mail Chimp for bulk mail sends Honestly, I too highly recommend a service like Mail Chimp or Constant Contact, or Emma. They clearly have their place and the headache of getting blacklisted is miserable, but sometimes you have a situation where the options and

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Dean Lawrence
You can also utilize a tool like BoogieBounce by Boogie Tools ( http://www.boogietools.com/). I've used this in the past and it works great. It allows you to determine the cause of a rejected email (hard bounce, soft bounce, server unreachable, etc.) and then programmatically deal with it as

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
I agree that using a third part service is highly desirable, but depending on the integration and the client it may not be feasible. I clearly have clients that would never allow their mail list or the mail content to be placed on any third-party server for compliance and/or security reasons...

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Kelly Matthews
Have any of you tried Amazon SES for email? I paid to clean my list and then started using them. I can send out 20,000 emails for $2. It’s so much cheaper. I do use a software program called Sendy in conjunction with Amazon which cost $50 (one time). Just thought I’d mention it, but it’s

Re: Handling invalid recipient in mailing list

2015-04-03 Thread anene.quorium
Hi guys, I have a rule of thumb. NEVER DELETE ANY DATA. Be it an obsolete email, a diseased customer, etc. I just flag the as NOT TO BE USED. This is because over time, someone may decide to activate that data and become your next biggest buyer. Also, with respect to newsletters, I have over

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Rob Voyle
Hi Folks Robert details all the steps to keeping an email list clean and valid. Having done that in the past and for a list of 5000 addresses I would say it is a far better deal to go with one of the email newsletter companies. Having tried several I can highly recommend mailchimp

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Maureen
+1 for Mail Chimp. I was preparing to post about this but Robert did a better job of explaining than I could. I never use anything but Mail Chimp for bulk mail sends. On Fri, Apr 3, 2015 at 10:29 AM, Rob Voyle robvo...@voyle.com wrote: Hi Folks Robert details all the steps to keeping an

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
It is true that using a service like Mail Chimp to validate a mail list is an easy way to validate a mail list, but the steps I detailed are a valid alternative for any full blown system you may be managing. I've written systems that have opt-in, opt-out features and utilize a variety of

RE: Handling invalid recipient in mailing list

2015-04-02 Thread Mark A Kruger
Dave, A) What is the error. Fixing the error will keep your loop going. B) Using a try/catch INSIDE the loop will allow you to keep it going - with the caveat that you will miss whatever email throws the error so you might want to log that inside the catch. -Mark -Original Message-

Re: Handling invalid recipient in mailing list

2015-04-02 Thread Bryan Stevenson
You may want to add a cftry/cfcatch (around the cfmail block) so when the error occurs it can be handled gracefully via cfcatch (like tagging the recipient record as having a bad address) and the loop will keep going - valid recipients get their mail and the others can be cleansed from the

RE: Handling invalid recipient in mailing list

2015-04-02 Thread Rick
cftry Run you CFMAIL.. cfcatchMark email bad in database/cfcatch /cftry -Original Message- From: Dave Long [mailto:d...@northgoods.com] Sent: Thursday, April 02, 2015 5:12 PM To: cf-talk Subject: Handling invalid recipient in mailing list I am trying to send a mass mailing to a

RE: Handling invalid recipient in mailing list

2015-04-02 Thread William Seiter
To: cf-talk Subject: RE: Handling invalid recipient in mailing list cftry Run you CFMAIL.. cfcatchMark email bad in database/cfcatch /cftry -Original Message- From: Dave Long [mailto:d...@northgoods.com] Sent: Thursday, April 02, 2015 5:12 PM To: cf-talk Subject: Handling invalid

RE: Handling invalid recipient in mailing list

2015-04-02 Thread Dave Long
: RE: Handling invalid recipient in mailing list cftry Run you CFMAIL.. cfcatchMark email bad in database/cfcatch /cftry -Original Message- From: Dave Long [mailto:d...@northgoods.com] Sent: Thursday, April 02, 2015 5:12 PM To: cf-talk Subject: Handling invalid recipient in mailing

Re: Handling invalid recipient in mailing list

2015-04-02 Thread Mike K
You probably know already, but I'll say it just in case ... you can rarely have a 100% clean list. I have found that even after you just clean up a list, your next mailing will have rejects in it. Even if it's only a few minutes since you last cleaned it up. Your error handling needs to be