Hi,

Just an idea off the top of my head - you could probably set the image to
call a CF template on your server, and use that to perform any appropriate
processing (i.e. logging the fact that THAT PARTICULAR email has been read.

Something like -

<cfmail to="#to_address#" .......>
        <!--- Your message --->
        <img
src="http://your.domain.com/log_receipt.cfm?client_email=#to_address#"
width="1" height="1" border=0>
</cfmail>

and in log_receipt.cfm -

<!--- Log the receipt --->
<!--- ...             --->
<!--- Then send the image --->
<cfcontent type="image/gif" file="transparent.gif" deletefile="No">


As I said, this is just off the top of my head and I haven't tried it, but
I've done a very similar thing with dynamic stylesheets ( <link
rel="stylesheet" href="http://domain.com/dynamic_stylesheet.cfm">, and a
<cfcontent type="text/css"> in the stylesheet template ) so this could
work.....

Alistair Davidson
Senior Web Developer
Rocom New Media
www.rocomx.net
[EMAIL PROTECTED]


-----Original Message-----
From: Tom Muck [mailto:[EMAIL PROTECTED]]
Sent: 22 February 2001 21:34
To: CF-Talk
Subject: Re: CFMail?


Put a transparent gif in the email, and then track it with your web server
log
file.

tom
www.basic-ultradev.com

----- Original Message -----
From: "Christian L. Watt" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, February 22, 2001 2:09 PM
Subject: CFMail?


> Hello all!
> Can anyone tell me how to track if an email is opened using CFMail
> to send it?  Any help would be great!!!
>
> CW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to