SOLVED

HTML Error, contains too many 'body' tags

Go to solution
Anonymous
Not applicable

HTML Error, contains too many 'body' tags

Hi there!

I am trying to approve my draft, and it keeps sending me an error message that says:

Error approving 9w58u - Form Submission Product Intro — HTML error, contains too many 'body' tags

Please let me know what I need to change to fix this error. Here is the HTML:

<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

  <head>

  </head>

  <body id="body" class="mktoText" mktoname="Message Body" lang="EN-US" link="#0563C1" vlink="#954F72">

    <!--[if !mso]><style>v\:* {behavior:url(#default#VML);}

o\:* {behavior:url(#default#VML);}

w\:* {behavior:url(#default#VML);}

.shape {behavior:url(#default#VML);}

</style><![endif]-->

    <!--[if gte mso 9]><xml>

<o:shapedefaults v:ext="edit" spidmax="1026" />

</xml><![endif]-->

    <!--[if gte mso 9]><xml>

<o:shapelayout v:ext="edit">

<o:idmap v:ext="edit" data="1" />

</o:shapelayout></xml><![endif]-->

    <div class="WordSection1">

      <p>Hi {{lead.First Name:default=Friend}},</p>

      <p>I noticed you got a chance to take a look at some of our marketing content. I hope you found some value there!<br><br>Do you ever feel like you aren't reaching the right customers? Here at Exact Data, we help you get in touch with your custom target audience enabling you to connect with people who are specifically interested in what you have to offer! We provide postal, email and phone leads to help you reach specific businesses or consumers through your marketing efforts.<br><br>Not sure how to get started with your marketing campaign? We've got you covered! In addition to mailing lists, we offer email deployment and creative, postal label printing and social media engagement services.</p>

      <p>If you're interested in learning more, please reply at your earliest convenience. <u><a href="https://www.exactdata.com/quote/form.php?id=26441&ModPagespeed=off" style="color: #288feb;" target="_blank">Click here</a></u> to schedule a free consultation.</p>

      <p><br>Cheers! <br><br></p>

      <p><b><span style="color: #404040;">Mackenzie

            <o:p></o:p></span></b></p>

      <p><span style="color: #404040;">Account Manager

          <o:p></o:p></span></p>

      <p><span style="font-size: 10.0pt; color: #404040;">

          <o:p>

             

          </o:p></span></p>

      <p><span style="color: #404040;">Tel: 877.794.4980 | Fax: 312.216.4537</span><b><span style="font-size: 12.0pt; font-family: 'Arial',sans-serif; color: #404040;">

            <o:p></o:p></span></b></p>

      <p><span style="font-size: 10.0pt; color: #404040;">Exact Data, 33 N. Dearborn Street, Suite 200, Chicago, IL 60602</span><span style="font-size: 10.0pt; color: #404040;">

          <o:p></o:p></span></p>

      <p><span style="font-size: 10.0pt; color: #1f4e79;">

          <o:p>

             

          </o:p></span></p>

      <p style="margin-bottom: 12.0pt;"><span style="color: #404040; text-decoration: none;"><img border="0" width="217" height="44" style="width: 2.2604in; height: .4583in;" id="Picture_x0020_1" src="http://lp.exactdata.com/rs/965-UVL-700/images/Exact-Data-Email-Footer-Logo.png" alt="Exact Data"></span><span style="font-size: 5.0pt; color: #404040;">

          <o:p></o:p></span></p>

      <p><span style="font-size: 9.0pt; color: #404040;">CONFIDENTIALITY NOTE:<br>This e-mail and any attachments may be confidential or contain privileged information. If you are not the intended recipient, be aware that any disclosure, copying, distribution or use of this e-mail or any attachment is prohibited. If you have received this e-mail in error, please notify us immediately by returning it to the sender and delete this copy and any attachments from your system. Thank you for your cooperation. 9w58u

          <o:p></o:p></span></p>

      <p>

        <o:p>

           

        </o:p></p>

    </div>

  </body>

</html>

Thanks for your help!

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Mark_Price
Level 7

Re: HTML Error, contains too many 'body' tags

Hi Katie,

Has this email ever worked or is this a new initiative ?  Just taking a quick look, I haven't tried using the entire body as a text variable so one of these might fix it:

change mktoname="Message Body" to mktoName="Message Body" 

^ notice Name vs. name

OR

try re-moving:  class="mktoText" mktoname="Message Body" from the <body> tag and add them to the WordSection1 div like so:

<div class="mktoText WordSection1" id="WordSection1" mktoName="Message Body">

etc. etc.

hope it helps!

View solution in original post

1 REPLY 1
Mark_Price
Level 7

Re: HTML Error, contains too many 'body' tags

Hi Katie,

Has this email ever worked or is this a new initiative ?  Just taking a quick look, I haven't tried using the entire body as a text variable so one of these might fix it:

change mktoname="Message Body" to mktoName="Message Body" 

^ notice Name vs. name

OR

try re-moving:  class="mktoText" mktoname="Message Body" from the <body> tag and add them to the WordSection1 div like so:

<div class="mktoText WordSection1" id="WordSection1" mktoName="Message Body">

etc. etc.

hope it helps!