/*
Copyright-boodschap:
Copyright (c) 2001 by Thijs Sloesen
All rights reserved!
Contact Thijs Sloesen at: epidemi@seekitfast.com
For license-details see license.txt as shipped with this product.
Auto Maasstad Site - Mailing Send Page
*/
include "shared.php";
init();
send_header();
if (!$session->loggedin)
{
die("Logt u a.u.b. eerst in.");
}
if ($session->loggedin)
{
if (!$action)
{
print "
Mailing
Selecteer een mailing om te verzenden:
";
$news = mysql_query("select * from mailings");
if ($news)
{
while ($an_article=mysql_fetch_array($news))
{
print "".htmlspecialchars(substr($an_article["Mailing"], 0, 50)) . "
";
}
}
else
{
echo "Sorry, er is een fout opgetreden tijdens het ophalen van de mailing.";
}
print "";
}
else if ($action=="send")
{
if (!$mailing)
die ("Selecteer een mailing!");
$data = mysql_query("SELECT * FROM emails");
if (!$data)
die ("FATAL ERROR: Could not SELECT FROM 'emails'!");
while ($dat = mysql_fetch_array($data))
{
mail($dat["Email"], "Nieuwe Auto Maastad mailing", "Goedendag!\n\nEr ligt weer een nieuwe editie van de Auto Maasstad Mailing op u te wachten!\nOm de mailing te lezen, ga naar: ".$web_root."mailing.php?mailing=$mailing\n\nMet vriendelijke groet,\n\nAuto Maasstad", "From: $mailing_from\nReply-To: $mailing_from");
}
print "De mailings zijn verstuurd! Ga verder.";
}
}
send_footer();
?>