Yes, you just have to hand-code your headers and boundaries (spacing is
important):

<cfmail to="#someEMAIL#"
from="[EMAIL PROTECTED]"
subject="some subject"
>
<cfmailparam name="reply-to" value='[EMAIL PROTECTED]'>
<cfmailparam name="mime-version" value="1.0">
<cfmailparam name="content-type"
 value='multipart/alternative; boundary="------------7C252"'>


--------------7C252
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

<cfinclude template="email.txt">

--------------7C252
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit

<cfinclude template="email.htm">

--------------7C252--


-- End --

  </cfmail>

tom
www.basic-ultradev.com



"Michael Lugassy" <[EMAIL PROTECTED]> wrote in message
00dc01c103ad$6747d170$[EMAIL PROTECTED]">news:00dc01c103ad$6747d170$[EMAIL PROTECTED]...
> I remember looking at an archived message that gave a good solution
> on implementing both html and plain text code on the same page
> so people with no html support will see the text version and vice versa.
>
> unforunatlly, the list archived have changed? and I can seem to find it.
> does anyone know something about it?
>
> Thanks,
>
> Michael Lugassy
>
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to