Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139