for some reson my this code keeps having a parse error @ line 122...could someone help?
<?php
if(!empty($HTTP_POST_VARS['sender_mail']) || !empty($HTTP_POST_VARS['sender_message']) || !empty($HTTP_POST_VARS['sender_subject']) || !empty($HTTP_POST_VARS['sender_name']))
{
$to = stripslashes($HTTP_POST_VARS['sender_message']);
$subject = stripslashes($HTTP_POST_VARS['sender_subject']);
if(mail($to, $subject, '
<HEAD>
<TITLE>nowOpen</TITLE>
<STYLE TYPE="text/css">
<!--
titleTxt { color:#CCCCCC; font-family:Arial; font-size:14px; font-weight:bolder; font-style:normal }
mainTxt { color:white; font-family:Arial; font-size:12px; font-style:normal }
#nowOpen-01 {
position:absolute;
left:0px;
top:0px;
width:760px;
height:63px;
}
#nowOpen-02 {
position:absolute;
left:0px;
top:63px;
width:760px;
height:202px;
padding-top:15px;
}
#nowOpen-03 {
position:absolute;
left:0px;
top:265px;
width:760px;
height:111px;
padding-top:5px;
padding-right:0px;
margin-right:0px;
}
#nowOpen-04 {
position:absolute;
left:0px;
top:376px;
width:760px;
height:84px;
}
-->
</STYLE>
</HEAD>
<BODY BGCOLOR=#556D96 link="#FFFFFF">
<DIV ID="nowOpen-01" style="background-image: url(http://www.insyntrix.com/emailer/images/nowOpen_01.jpg)"></DIV>
<DIV ID="nowOpen-02" style="background-image: url(http://www.insyntrix.com/emailer/images/nowOpen_02.jpg)">
<ol>
<titleTxt>INSYNTRIX LAUNCHES NEW FLASH 6 SITE!
<a href="http://www.insyntrix.com" target="blank">CLICK HERE TO VISIT!</a></titleTxt><br>
<br>
<mainTxt>
<b>New Features Include:</b>
<ol>
·Enhanced
Portfolio Section ·The
Freshest News
·24/7 Customer Support</mainTxt>
</ol>
</ol>
<div align="left"><titleTxt> -And
Much More!</titleTxt></div>
</DIV>
<DIV ID="nowOpen-03" style="background-image: url(http://www.insyntrix.com/emailer/images/nowOpen_03.jpg)">
<maintxt>
<blockquote>
<blockquote>
<blockquote> <b> ·Music Creation ·Graphic
Design </b> <b>·Digital
Audio/Video </b> Taking
a rough idea<b><br>
·CD-Rom Authouring ·DVD
Authoring
·Strategic Marketing </b>and
making it better<b><br>
·Flash Development</b> <b> ·Instructional
Design </b> <b>·Online
Training </b>doesn\'t
have to be like<br>
<b> ·Web Site Hosting </b>
<b>·Scriptwriting
·Email Campaigns </b> squeezing
blood from <br>
<b> ·Web Site Hosting</b>
<b>·Project Management</b>
<b>·Kiosk Media Design </b>a
turnip.<b> <a href="http://www.insyntrix.com" target="blank">See
How Here </a> </b></blockquote>
</blockquote>
</blockquote>
</DIV>
<DIV ID="nowOpen-04" style="background-image: url(http://www.insyntrix.com/emailer/images/nowOpen_04.jpg)">
<blockquote>
<blockquote>
<p><b><mainTxt>The team at Insyntrix offers our clients a refreshingly simple
concept for multimedia developers: <br>
<font color="#98E4EB"> Excellent Customer Service</font><font color="#FFFFFF">.</font>
That\'s just one of many reasons to choose Insyntrix for your next project.<br><br>
We take the extra step to insure that your project is being handled with
all of your business objectives in mind. From concept to completion we
explore every possible option to maximize your importnat budget.</mainTxt></b>
</blockquote>
</blockquote>
</DIV>
</BODY>
', "To: Our Valued Customers <insyntrixCommunity@insyntrix.com>\n" . "From: ::Insyntrix:: <sender@insyntrix.com>\n" . "MIME-Version: 1.0\n" . "Content-type: text/html; charset=iso-8859-1"));
{
echo "output=sent";
else {
echo "output=error";
}
else {
echo "output=error";
}
?>