<?php
require("class.phpmailer.php");

$mail = new phpmailer();

$mail->From       = "home@kidspages.org";
$mail->AddReplyTo = "home@kidspages.org";
$mail->FromName   = "Kids' Pages Family Magazine";
$mail->Mailer     = "mail";

@MYSQL_CONNECT( "localhost", "kp_pnmonkey", "buster" );
@mysql_select_db( "kp_phoenix" );

$query  = "select distinct email_address from kp_emails where email_address not in (select email_address from kp_emails_block)";

$result = @MYSQL_QUERY($query);

while ( $row = mysql_fetch_array ( $result ) )
{

// HTML body
$body =
<<<EOT

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The Greatest Show on Earth</title>
<style type="text/css">
<!--
body,td,th {
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 15px;
	color: #FFFFFF;
}
body {
	background-color: #d51f26;
}

p sup {font-size: 70%; vertical-align: top;}
h1 sup {font-size: 50%; vertical-align: top;} 
a {color: white;} 
-->
</style></head>

<body>
<img src="http://kidspages.org/newsletter/images/Circus-Bellobration.gif" width="400" height="160" /><br />
<h1><em>The Greatest Show On Earth</em><sup>&reg;</sup> is Coming Soon!<br />
  Celebrate Columbus Day with $10 Tickets*</h1>
<p>This All-New edition of <em>Ringling Bros. and Barnum &amp; Bailey</em><sup>&reg;</sup> is guaranteed to have both kids and parents jumping out of their seats and into the circus action from the very start.</p>
<p>Join comic daredevil Bello Nock (the guy with the BIG RED HAIR) and the globe-spanning cast of the 137th Edition of <em>The Greatest Show On Earth</em> as they take audiences on what is sure to be a nonstop circus adventure! And, a jumbo video screen now brings families even closer to the excitement, thrills and WOWS!<br />
</p>
<p>The 137th Edition of <em>Ringling Bros. and Barnum &amp; Bailey</em> will astound audiences at the Denver Coliseum in Denver (October 4-14)!</p>
<p>Celebrate Columbus Day with <em>Ringling Bros. and Barnum &amp; Bailey</em>! Monday, October 8, 11:00am performance -- <a href="http://www.ticketmaster.com/promo/q6ye2j" title="TICKETS $10!" target="_blank">TICKETS $10!</a>*</p>
<p>Click here for $10 Tickets: <a href="http://www.ticketmaster.com/promo/q6ye2j" title="TICKETS $10" target="_blank">www.ticketmaster.com/promo/q6ye2j</a></p>
<p>(SPECIAL NOTE: Please be sure to keep a sharp eye out for special Opening Night ticket prices for Thursday, October 4 at 7:30pm. TICKETS $12 -- not valid for <strong>Circus Celebrity</strong><sup>SM</sup>, Front Row or VIP seating, and cannot be combined with any other offers.)</p>
<p>*$10 ticket offer not valid for <strong>Circus Celebrity</strong>, Front Row or VIP Seating and cannot be combined with any other offer. <br /></p>

<div align="center"><img src="http://kidspages.org/newsletter/images/Circus-BellobrationLogo.gif" width="300" height="150" /></div>

<p style="font-size:60%;">To unsubscribe from these periodic announcements, hit the reply button and type "Unsubscribe" in the subject line.</p>
</body>
</html>

EOT
;

// Plain text body (for mail clients that cannot read HTML)
$text_body  =
<<<EOT

The Greatest Show On Earth® is Coming Soon!
Celebrate Columbus Day with $10 Tickets*

This All-New edition of Ringling Bros. and Barnum & Bailey® is guaranteed to have both kids and parents jumping out of their seats and into the circus action from the very start.

Join comic daredevil Bello Nock (the guy with the BIG RED HAIR) and the globe-spanning cast of the 137th Edition of The Greatest Show On Earth as they take audiences on what is sure to be a nonstop circus adventure! And, a jumbo video screen now brings families even closer to the excitement, thrills and WOWS!

The 137th Edition of Ringling Bros. and Barnum & Bailey will astound audiences at the Denver Coliseum in Denver (October 4-14)!

Celebrate Columbus Day with Ringling Bros. and Barnum & Bailey! Monday, October 8, 11:00am performance -- TICKETS $10!*

Click here for $10 Tickets: www.ticketmaster.com/promo/q6ye2j

(SPECIAL NOTE: Please be sure to keep a sharp eye out for special Opening Night ticket prices for Thursday, October 4 at 7:30pm. TICKETS $12 -- not valid for Circus CelebritySM, Front Row or VIP seating, and cannot be combined with any other offers.)

*$10 ticket offer not valid for Circus Celebrity, Front Row or VIP Seating and cannot be combined with any other offer.


To unsubscribe from these periodic announcements, hit the reply button and type "Unsubscribe" in the subject line.

EOT
;

  $mail->From     = "home@kidspages.org";
  $mail->FromName = "Kids' Pages Family Magazine";
  $mail->Mailer   = "mail";

  $mail->Body    = $body;
  $mail->AltBody = $text_body;
  $mail->Subject = "The Greatest Show on Earth is Coming Soon!";
  $mail->AddAddress( $row["email_address"] );

//  $mail->AddAddress($row["email_address"], $row["full_name"]);
//  $mail->AddStringAttachment($row["photo"], "YourPhoto.jpg");

  if ( !$mail->Send() )
  {
    echo "There has been a mail error sending to " . $row["email_address"] . "<br>";
  }
  else
  {
    echo "Success sending to " . $row["email_address"] . "<br>";
  }

  // Clear all addresses and attachments for next loop
  $mail->ClearAddresses();
  $mail->ClearAttachments();
}

  echo "<br />";
  echo "### COMPLETE ###<br />";
?>
