PluginProbe
FluentSMTP – WP Mail SMTP Plugin with Amazon SES, SendGrid, Mailgun, Postmark, Cloudflare, toSend, Gmail and Any SMTP / trunk
FluentSMTP – WP Mail SMTP Plugin with Amazon SES, SendGrid, Mailgun, Postmark, Cloudflare, toSend, Gmail and Any SMTP vtrunk
2.4.0 trunk 1.0.1 1.1.0 1.1.1 1.2.0 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.71 2.2.72 2.2.73 2.2.80 2.2.81 All 32 releases
fluent-smtp / boot.php

boot.php in FluentSMTP – WP Mail SMTP Plugin with Amazon SES, SendGrid, Mailgun, Postmark, Cloudflare, toSend, Gmail and Any SMTP trunk, at boot.php

14 lines 371 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 !defined('WPINC') && die;
4
5 define('FLUENTMAIL', 'fluentmail');
6 define('FLUENTMAIL_PLUGIN_VERSION', '2.4.0');
7 define('FLUENTMAIL_UPLOAD_DIR', '/fluentmail');
8 define('FLUENT_MAIL_DB_PREFIX', 'fsmpt_');
9 define('FLUENTMAIL_PLUGIN_URL', plugin_dir_url(__FILE__));
10 define('FLUENTMAIL_PLUGIN_PATH', plugin_dir_path(__FILE__));
11
12
13 require __DIR__ . '/vendor/autoload.php';
14