HTML cfmail question

2002-05-01 Thread Jim McAtee
When using cfmail type=html, is it best to include a full set of html tags (html/html, head/head, body/body), as you'd use within a web page, or is it better to omit them? I'm thinking of what works best with html-capable email clients, as I only have Outlook and OE to test with. Jim

RE: HTML cfmail question

2002-05-01 Thread Craig Thomas
You need (should) use well formed html for HTML email clients to render the HTML correctly. As with different browser's, different email clients may or may not compensate for mal-formed HTML. -Craig Thomas __ This list and

Re: HTML cfmail question

2002-05-01 Thread BEN MORRIS
In my experience, you want to use the best and safest html you can, and include the html tags. Avoid complicated tables and reliance on CSS. Certainly no JavaScript. Groupwise can really mangle messages. Also, use target=_blank if you can in all of your links. Jim McAtee [EMAIL PROTECTED]

RE: HTML cfmail question

2002-05-01 Thread Craig Thomas
Also remember to use absolute links as opposed to relative. -Craig Thomas __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

HTML CFMAIL

2000-11-27 Thread paul smith
Do we need to do anything special to send HTML Mail with CFMAIL? best, paul ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: HTML CFMAIL

2000-11-27 Thread Dylan Bromby
TYPE="HTML" -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 2:02 PM To: CF-Talk Subject: HTML CFMAIL Do we need to do anything special to send HTML Mail with CFMAIL? b

Re: HTML CFMAIL

2000-11-27 Thread Howie Hamlin
ot; [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, November 27, 2000 5:02 PM Subject: HTML CFMAIL Do we need to do anything special to send HTML Mail with CFMAIL? best, paul ~~ Structure your ColdFusion code with Fusebox.

Re: HTML CFMAIL

2000-11-27 Thread Jamie Keane
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Monday, November 27, 2000 5:09 PM Subject: HTML CFMAIL Do we need to do anything special to send HTML Mail with CFMAIL? best, paul ~~ Structure your ColdFusion code with Fusebox. Get the official bo

Re: HTML CFMAIL

2000-11-27 Thread Jeanne Sarfaty Glazer
Nope. You just have to make sure the html attribute is set: e.g. CFMAIL type="html" - - - Jeanne - Original Message - From: "paul smith" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, November 27, 2000 5:02 PM Subject: HTML CFMAIL Do

Re: HTML CFMAIL

2000-11-27 Thread Terry Troxel
type="HTML" will get you going. - Original Message - From: paul smith [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 27, 2000 2:02 PM Subject: HTML CFMAIL Do we need to do anything special to send HTML Mail with CFMAIL? b

Re: HTML CFMAIL

2000-11-27 Thread Jeffry Houser
No.. If memory serves me, there is actually a CFMAIL setting to specify text vs HTML. paul smith wrote: Do we need to do anything special to send HTML Mail with CFMAIL? best, paul ~~ Structure your ColdFusion code with