Current Path : /web/htdocs/www.entinoprofit.org/home/newsletter/admin/
Upload File :
Current File : /web/htdocs/www.entinoprofit.org/home/newsletter/admin/preparesend.php

<?php
require_once dirname(__FILE__).'/accesscheck.php';

print Help("preparemessage","What is prepare a message");

$access = accessLevel("preparemessage");
switch ($access) {
  case "owner":
    $subselect = " where owner = ".$_SESSION["logindetails"]["id"];
    $ownership = ' and owner = '.$_SESSION["logindetails"]["id"];
    break;
  case "all":
    $subselect = "";break;
  case "none":
  default:
    $subselect = " where id = 0";
    $ownership = " and id = 0";
    break;
}

include "send_core.php";

if (!$done)  {
  print '<p class="submit"><input type="submit" name=prepare value="Add message"></p></form>';
}

?>