I did find an UDF that would verify a string is an email address but none
that would find an email address in a string.

Luis

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 12, 2002 8:39 AM
To: CF-Talk
Subject: Re: CFPOP and undeliverable mail


Check out www.cflib.org for a UDF that will find the email address is a 
string. Also look at www.coolfusion.com and the inexpensive IMS-SE product 
which has built in undeliverable support and may improvements on the 
cfmail/pop combo....

Brook

At 08:21 AM 12/12/2002 -0600, you wrote:
>I am writing some code for a newsletter. I would like to be able to remove
>any "Undeliverable" email address from our recipients list. I'm using the
>following code:
>
><cfpop
>server = "server"
>username = "user"
>password = "pwd"
>action = "GETHEADERONLY"
>NAME = "msg" >
>
><ul>
><cfoutput query = "msg">
><cfif #subject# CONTAINS "Undeliverable">
><cfset msguid=#uid#>
></cfif>
></cfoutput>
>
>
><cfpop
>server = "server"
>username = "user"
>password = "pwd"
>action = "GETALL"
>uid = #msguid#
>NAME = "body" >
><cfoutput query = "body">
><li>From: #from# - To: #to# Subject: #subject# -Date #date#<br>Body: #body#
></cfoutput>
><UL>
>
>It returns a string that looks like this:
>From: System Administrator - To: Luis Lebron Subject: Undeliverable: Test
>message -Date Thu, 12 Dec 2002 07:44:24 -0600 Body: Your message To:
>'[EMAIL PROTECTED]' Subject: Test message Sent: Thu, 12 Dec 2002 07:44:12
>-0600 did not reach the following recipient(s): '[EMAIL PROTECTED]' on
Thu,
>12 Dec 2002 07:44:24 -0600 The recipient name is not recognized The MTS-ID
>of the original message is: c=US;a=
>;p=sigmainteractive;l=SIGMA2-021212134412Z-565
>MSEXCH:IMS:SIGMA:Huntsville:SIGMA2 3550 (000B09AA) 550 [EMAIL PROTECTED]
>unknown user account Test
>
>How can I extract the recipient's name from this string?
>
>thanks,
>
>Luis
>
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Reply via email to