| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Plugin Name: WP Mail Log |
| 5 |
* Description: WP Mail Log helps you to Log and view all emails from WordPress. |
| 6 |
* Plugin URI: https://wpvibes.com/ |
| 7 |
* Author: WPVibes |
| 8 |
* Version: 1.1 |
| 9 |
* Author URI: https://wpvibes.com/ |
| 10 |
* License: GNU General Public License v2 or later |
| 11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| 12 |
* Text Domain: wml-wts |
| 13 |
*/ |
| 14 |
|
| 15 |
if ( ! defined( 'ABSPATH' ) ) { |
| 16 |
exit; // Exit if accessed directly |
| 17 |
} |
| 18 |
|
| 19 |
|
| 20 |
define( 'WML_URL', plugins_url( '/', __FILE__ ) ); |
| 21 |
define( 'WML_PATH', plugin_dir_path( __FILE__ ) ); |
| 22 |
define( 'WML_BASE', plugin_basename( __FILE__ ) ); |
| 23 |
define( 'WML_FILE', __FILE__ ); |
| 24 |
define( 'WML_VERSION', '1.1' ); |
| 25 |
|
| 26 |
|
| 27 |
require WML_PATH . 'includes/bootstrap.php'; |
| 28 |
|