You're probably better off creating a separate version for AOL subscribers
using only the x-aol version.  Regular newsreaders such as Outlook Express
will interpret X-AOL as an attachment.  Only AOL software recognizes it.
Not only that, but you'll trim the message size by creating separate
versions.  It really helps when you are sending to a list.

SELECT email FROM mytable WHERE email LIKE '%aol.com'

and

SELECT email FROM mytable WHERE email NOT LIKE '%aol.com'

tom
www.basic-ultradev.com

<[EMAIL PROTECTED]> wrote in message
003f01c1979b$83c3b210$5a33a8c0@webdivaw2k">news:003f01c1979b$83c3b210$5a33a8c0@webdivaw2k...
> Why does the email send the AOL version as an attachment?
>
> ----- Original Message -----
> From: "Joseph DeVore" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Sunday, January 06, 2002 10:45 PM
> Subject: RE: CFMail and html/text
>
>
> > Mike,
> > See the code below...
> >
> > Nick,
> > thanks for reposting this earlier.
> >
> > - Joseph
> >
> >
> >
> > -------- Original Message --------
> > Subject: RE: HTML EMAIL
> > Date: Wed, 19 Dec 2001 16:55:39 -0800
> > From: "Joseph DeVore" <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > To: CF-Talk <[EMAIL PROTECTED]>
> >
> > This code should get you on your way.
> > For simplicity I use 3 includes for the mime parts.
> >
> > * TEXT.CFM (plain text version for text only clients)
> > * AOL.CFM (aol version for older version of aol - limited html tags)
> > * HTML.CFM (html version)
> >
> > <cfmail to="" from="" subject="">
> > <cfmailparam name="X-Mailer" value="VeloxWeb multipart mailer v1.0">
> > <cfmailparam name="MIME-Version" value="1.0">
> > <cfmailparam name="Content-Type" value="multipart/alternative;
> > boundary=veloxweb">
> >
> > --veloxweb
> > Content-Type: text/plain; charset=us-ascii
> >
> > <cfinclude template="text.cfm">
> >
> > --veloxweb
> > Content-Type: text/x-aol; charset=us-ascii
> >
> > <cfinclude template="aol.cfm">
> >
> > --veloxweb
> > Content-Type: text/html; charset=us-ascii
> >
> > <cfinclude template="html.cfm">
> >
> > --veloxweb--
> > </cfmail>
> >
> > HTH,
> >
> > Joseph DeVore
> > VeloxWeb Technologies
> >
> >
> 
______________________________________________________________________
Dedicated Windows 2000 Server
  PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to