Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

email.php 686B

12345678910111213141516171819202122232425
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/account.php');
  4. checkAccess(HAS_HOSTING);
  5. define('TITLE', 'E-Mail settings');
  6. addDashboardItem('Useful links', 'Account overview', '');
  7. addDashboardItem('Frequently asked questions', 'How do mailboxes and e-mail addresses work?', 'support/027');
  8. define('MESSAGE', 'Sorry, this function hasn\'t been implemented yet. Please <a href="'.CP_PATH.'tickets">raise a ticket</a> for assistance.');
  9. require_once('lib/header.php');
  10. require_once('pages/email.php');
  11. require_once('pages/addemail.php');
  12. require_once('pages/mailbox.php');
  13. require_once('pages/addmailbox.php');
  14. require_once('lib/footer.php');
  15. ?>