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

$mail = new phpmailer();

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

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

$query  = "SELECT distinct email_address FROM kp_emails";
$result = @MYSQL_QUERY($query);

while ( $row = mysql_fetch_array ( $result ) )
{
  // HTML body
$body =
<<<EOT

<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>Kids' Pages Reader Appreciation Day at SixFlags!</title>
  <style>
    a         { color:#ffff00 }
    a:link    { font-weight: bold; text-decoration: none; }
    a:hover   { font-weight: bold; text-decoration: underline; }
    a:active  { font-weight: bold; text-decoration: none; }
  </style>
</head>

<body bgcolor="#e56e1e" text="#FFFFFF" link="#0000ff" vlink="#0000ff" alink="#0000ff">
  <div align="center">
    <div align="left" style="font-family:verdana,geneva,serif; font-size:14px; font-weight:bold; padding:10px; width:80%;">
      <div align="center"><a href="http://kidspages.org/modules.php?op=modload&name=Sections&file=index&req=viewarticle&artid=5076" target="_blank"><img src="http://kidspages.org/newsletter/images/joinus-sixflags.gif" width="400" height="229" border="0"></a></div>
      <br />

      <div align="center" style="font-size:18px;font-weight:bold;color:#ffff00;">
        Join Us for Food, Fun and<br />Good Times for the Entire Family!<br />
        <br />
        Kids Pages Reader Appreciation Day<br />at Six Flags Elitch Gardens<br />
        <br />
        Sunday, June 11, 2006,<br /> during normal operating hours<br />
      </div>

      <p>A Great Deal! Only $25 per person. Includes a Yummy Meal<sup>*</sup> and Lots of Extras!</p>

      <p>BEST PRICE AVAILABLE (Regular admission is $44.99)! (Cheaper than discount tickets, and includes food and entertainment!)</p>

      <p>$25 price includes unlimited rides, shows and attractions, the Island Kingdom Water Park PLUS Special Appearances and Activities for your family! Children 3 and under free.</p>

      <p><span style="font-size:18px;">Kids' Pages guests enjoy an exclusive private party with...</span><br />Face Painting, Balloons, Magic, Great Food! Family Fun!</p>

      <div align="center" style="font-size:20px;font-weight:bold;color:#ffff00;"><a href="http://kidspages.org/modules.php?op=modload&name=Sections&file=index&req=viewarticle&artid=5076" target="_blank">Click here to order tickets!</a></div>

      <p>*Includes BBQ Sandwich, Hot Dog, Baked Beans, Potato Salad, Beverage and Frozen Desert!</p>

      <p>Six Flags Has New Leadership and a new Family Friendly Focus, there is no better time to visit the park! Check out all their new features to attract families at this fun event. Hope to see you there!</p>

      <br />
      <div align="center"><a href="http://kidspages.org" target="_blank"><img src="http://kidspages.org/newsletter/images/KidsPagesLogo-e56e1e.gif" width="281" height="71" border="0"></a></div>

    </div>
  </div>
</body>
</html>

EOT
;

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

Join Us for Food, Fun and
Good Times for the Entire Family!

Kids Pages Reader Appreciation Day
at Six Flags Elitch Gardens

Sunday, June 11, 2006,
during normal operating hours

A Great Deal! Only $25 per person. Includes a Yummy Meal* and Lots of Extras!

BEST PRICE AVAILABLE (Regular admission is $44.99)! (Cheaper than discount tickets, and includes food and entertainment!)

$25 price includes unlimited rides, shows and attractions, the Island Kingdom Water Park PLUS Special Appearances and Activities for your family! Children 3 and under free.

Kids' Pages guests enjoy an exclusive private party with...
Face Painting, Balloons, Magic, Great Food! Family Fun!

Go to kidspages.org to order tickets!

*Includes BBQ Sandwich, Hot Dog, Baked Beans, Potato Salad, Beverage and Frozen Desert!

Six Flags Has New Leadership and a new Family Friendly Focus, there is no better time to visit the park! Check out all their new features to attract families at this fun event. Hope to see you there!

EOT
;

  $mail->Body    = $body;
  $mail->AltBody = $text_body;
  $mail->Subject = "Party with Kids' Pages at Elitch Gardens!";
  $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();
}
?>
