PluginProbe
WP Mail Log / dev
WP Mail Log vdev
1.1.6 trunk 0.1 0.2 0.3 0.4 0.5 1.0 1.0.1 1.0.2 1.1.1 1.1.2 1.1.3 1.1.5 dev
wp-mail-log / wp-mail-log.php

wp-mail-log.php in WP Mail Log dev, at wp-mail-log.php

28 lines 706 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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