View file mail/act/dataSend.php
<?php defined('ACCESS') OR die('No direct script access...');
/**
* Author - koder_alex
* ISQ - 669906617
* VK - https://vk.com/koder_alex
* It is forbidden to give, sell, modify.
*/
if(isAjax())
exit(header('Location:/mail/'));
$func = 'default';
if (isset($_GET['func']) && preg_match('#^([A-z]+)$#i', $_GET['func']))
if (is_file('act/func/' . $_GET['func'] . '.php'))
$func = $_GET['func'];
require 'act/func/' . $func . '.php';
exit();