16 lines
408 B
PHP
16 lines
408 B
PHP
<?php
|
|
if(isset($_GET['sess']) && $_GET['sess'] == '8Fh71fChNMeyOQ7f') {
|
|
|
|
ini_set('display_errors', 1);
|
|
error_reporting(E_ALL);
|
|
|
|
require_once 'actions_autoloader.php';
|
|
|
|
$action = isset($_GET['action']) ? $_GET['action'] : 'reminder_email';
|
|
|
|
if($action == 'reminder_email') {
|
|
$creditDirect = new CRED_Credit_Reminder();
|
|
$creditDirect->send_reminder_email();
|
|
|
|
}
|
|
} |