Ask a Question related to Macromedia ColdFusion, Design and Development.
-
htown #1
Blank HTML emails
I am just about to throw this whole thing out the window but before I do I
thought I would come and see if I could get some help first.
I am using Outlook 2002 and I receive HTML emails all the time with no
problem. If I remove the HTML and put in just some basic text then CFMAIL sends
no problem. If I put in some HTML then I get a blank email. I have type="html"
set in the CFMAIL tag but I still get a blank email. The page code is rather
long so I will just put the top part and bottom to see what you think.
<cfmail
from= #EmailAddress#
to="houston@hbip.com"
subject="TX Mover Quote"
server="63.99.224.66"
type="html">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Liberty Moving Company -Quick Quote /title>
<link href="../styles/main.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {
font-size: 14px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<table width="720">
<tr>
<td><img src="IMG_21.gif" width="742" height="102"><br>
<img src="IMG_20.jpg" width="740" height="177"></td>
</tr>
<tr>
htown Guest
-
Creating HTML Emails
Hi Everyone. I was wondering if it's possible to create HTML emails in InDesign? My client wants me to create a simple brochure as an HTML... -
HTML emails
no attached images. First of all, you should never attach the images to an HTML email. You should always upload them to a server and link to them... -
Design HTML emails
I've observed a number of emails sending for advertising purposes and wondered how to create them. Do I just use regular HTML file in dream weaver... -
design of HTML emails
I've observed a number of emails sending for advertising purpose. I wonder how to create them. Do I just use regular HTML file in dream weaver or... -
How do you send html emails
I have a html file that I need to email to our sales reps. I would like the html to to embedded in the email's body, like newsletter emails we all... -
Ken Ford - *TMM* & PVII #2
Re: Blank HTML emails
Try using just the styles and the table code:
<cfmail
from= #EmailAddress#
to="houston@hbip.com"
subject="TX Mover Quote"
server="63.99.224.66"
type="html">
<link href="http://www.splitlightdesigns.com/styles/main.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {
font-size: 14px;
font-weight: bold;
}
-->
</style>
<table width="720">
<tr>
<td><img src="IMG_21.gif" width="742" height="102"><br>
<img src="IMG_20.jpg" width="740" height="177"></td>
</tr>
<tr> . . . . </tr>
<tr>
<td>
<p><span class="style1">Additional Comments</span><br>
#textarea# </p>
</td>
</tr>
</table>
</cfmail>
--
Ken Ford
PVII Support Team
[url]http://www.projectseven.com[/url]
Team Macromedia Volunteer - Dreamweaver
Certified Dreamweaver MX 2004 Developer
"htown" <houston@hbip.com> wrote in message news:d9stso$n03$1@forums.macromedia.com...>I am just about to throw this whole thing out the window but before I do I
> thought I would come and see if I could get some help first.
>
> I am using Outlook 2002 and I receive HTML emails all the time with no
> problem. If I remove the HTML and put in just some basic text then CFMAIL sends
> no problem. If I put in some HTML then I get a blank email. I have type="html"
> set in the CFMAIL tag but I still get a blank email. The page code is rather
> long so I will just put the top part and bottom to see what you think.
>
> <cfmail
> from= #EmailAddress#
> to="houston@hbip.com"
> subject="TX Mover Quote"
> server="63.99.224.66"
> type="html">
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
> <title>Liberty Moving Company -Quick Quote /title>
> <link href="../styles/main.css" rel="stylesheet" type="text/css">
> <style type="text/css">
> <!--
> .style1 {
> font-size: 14px;
> font-weight: bold;
> }
> -->
> </style>
> </head>
>
> <body>
> <table width="720">
> <tr>
> <td><img src="IMG_21.gif" width="742" height="102"><br>
> <img src="IMG_20.jpg" width="740" height="177"></td>
> </tr>
> <tr>
> .
> .
> .
> .
> </tr>
> <tr>
> <td><p><span class="style1">Additional Comments</span><br>
> #textarea#
> </p>
> </td>
> </tr>
> </table>
>
> </body>
> </html>
> </cfmail>
> <cflocation url="http://www.splitlightdesigns.com/txmover/index.html">
>
Ken Ford - *TMM* & PVII Guest
-
futureman #3
Re: Blank HTML emails
the closing title tag is missing the beginning bracket
<title>Liberty Moving Company -Quick Quote /title>
should be
<title>Liberty Moving Company -Quick Quote </title>
futureman Guest



Reply With Quote

