<?php
include ('header.php');
/**********************************************************************
* Copyright notice Ja2BU 1.1.
*
* (c) 2011 Predrag Rukavina - admin[at]phpform[dot]net
* All rights reserved
*
* This script is part of the Ja2BU project.
* The Ja2BU project is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* This copyright notice MUST appear in all copies of the script!
************************************************************************/
?>
<div id="vforms">
<div id="cconfig">Newsletter</div>
<script type="text/javascript" src="nicEdit.js"></script>
<script type="text/javascript">
bkLib.onDomLoaded(function() { nicEditors.allTextAreas() });
</script>
<?php
if(isset($_POST['submit'])) {
$btextyx = $_POST['btextyx'];
$bamessy = $_POST['bamessy'];
if(get_magic_quotes_gpc()) {
$btextyx = stripslashes($btextyx);
$bamessy = stripslashes($bamessy);
}
if(strlen($btextyx) < 3) {
echo "Field must be at least 3 characters long:
<a href='javascript:history.go(-1)'>Go Back</a></div></div></div>";
include ('footer.php');
die();
}
if(strlen($bamessy) < 3) {
echo "Field must be at least 3 characters long:
<a href='javascript:history.go(-1)'>Go Back</a></div></div></div>";
include ('footer.php');
die();
}
$brecordSet = &$conn->Execute("SELECT * FROM users ORDER by usid desc");
if(!$brecordSet)
print $conn->ErrorMsg();
else
while(!$brecordSet->EOF) {
?>
Username: <?php echo $brecordSet->fields['username'] ?> -
Email: <?php echo $brecordSet->fields['email'] ?><br />
<?php $headers = 'MIME-Version: 1.0'."\r\n";
$headers .= 'Content-type: text/html; charset=utf-8'."\r\n";
$headers .= "From: $sitemail"."\r\n";
$juser = $brecordSet->fields['email'];
mail($juser,$btextyx,$bamessy,$headers);
$brecordSet->MoveNext();
}
echo "<div id ='information'> Successfully. ";
?>
<a href="newsletter.php">Back to Manage Newsletter</a></div>
<?php } else {
?>
<br />
<form method="post" action="newsletter.php" method="post">
Subject:<br /> <input id="incc" name="btextyx" maxlength="255" />
<br /><br />
Description:<br /><textarea style="width:460px;height:333px;" name="bamessy"></textarea>
<br /><br />
<input type="submit" class="topicbuton" name="submit" value="Send" />
</form>
</div></div></div>
<?php
}
include ('footer.php');
/**************************************
* Revision: v.1.1.
***************************************/
?>