Yes it is possible in CF5. The fianl out put to the end user is detirmined by the users mail client.
Try this snippet I had <cfset crlf = chr(13)&chr(10)> <!--- Send the messages ---> <CFMAIL To="[EMAIL PROTECTED]" From="[EMAIL PROTECTED]" Subject="Get this"> <cfmailparam name="Content-type" value='multipart/alternative;boundary="----MIME-BOUNDARY----"'> <cfmailparam name="MIME-Version" value="1.0"> ------MIME-BOUNDARY----#crlf#Content-Type: text/plain; charset=us-ascii#crlf#Content-Transfer-Encoding: 7bit#crlf##crlf# <!--- begin plain text version ---> Test ------MIME-BOUNDARY----#crlf#Content-Type: text/html; charset=us-ascii#crlf#Content-Transfer-Encoding: 7bit#crlf##crlf# <!--- begin html version ---> <h1>Test</h1> <p> <font color=red> Test </font> </p> </cfmail> Trent Shepherd SeaSpray technology & design cell: 0412 245 212 phone:4285 8793 email: [EMAIL PROTECTED] -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brett Payne-Rhodes Sent: Friday, 18 July 2003 3:06 PM To: CFAussie Mailing List Subject: [cfaussie] Re: OT - Read html email in Groupwise Sorry, I don't know. A client is sending html email and someone using Groupwise is complaining that they can't read the email. That is all I know and I have been asked to 'fix' it. I guess the other question is, 'Is it possible to send html and text in the same email using cfmail in CF5?'. Thanks B) Antony Sideropoulos wrote: > what version of GroupWise Client / Mailbox? > > >>>>[EMAIL PROTECTED] 18/07/2003 2:58:21 pm >>> >>> > Hi, > > Can anyone tell me how, if possible, to read html email using > Groupwise? > > Thanks, > > Brett > B) > -- Brett Payne-Rhodes Eaglehawk Computing t: +61 (0)8 9371-0471 f: +61 (0)8 9371-0470 m: +61 (0)414 371 047 e: [EMAIL PROTECTED] w: www.ehc.net.au --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/ --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/
