| 1 |
<?php |
| 2 |
/** |
| 3 |
* Email Preview |
| 4 |
* |
| 5 |
* @author Studio 164a |
| 6 |
* @package Charitable/Templates/Emails |
| 7 |
* @version 1.0.0 |
| 8 |
*/ |
| 9 |
|
| 10 |
// Exit if accessed directly. |
| 11 |
if ( ! defined( 'ABSPATH' ) ) { exit; } |
| 12 |
|
| 13 |
if ( ! isset( $_GET[ 'email_id' ] ) ) { |
| 14 |
return; |
| 15 |
} |
| 16 |
|
| 17 |
$email = charitable_get_helper( 'emails' )->get_email( $_GET[ 'email_id' ] ); |
| 18 |
$email_object = new $email; |
| 19 |
|
| 20 |
echo $email_object->preview(); |