%s

', \esc_html__( 'SMTP (by ROBOTSTXT) Amazon SES requires the SMTP (by ROBOTSTXT) plugin to be installed and active.', 'robotstxt-smtp-amazonses' ) ); } // Defer initialization to plugins_loaded so all plugins are available for the dependency check. \add_action( 'plugins_loaded', static function () { if ( ! \class_exists( 'Robotstxt_SMTP\Plugin' ) ) { \add_action( 'admin_notices', 'robotstxt_smtp_amazonses_missing_parent_notice' ); \add_action( 'network_admin_notices', 'robotstxt_smtp_amazonses_missing_parent_notice' ); return; } require_once ROBOTSTXT_SMTP_AMAZONSES_PATH . 'includes/class-plugin.php'; \Robotstxt_SMTP_AmazonSES\Plugin::get_instance()->run(); } ); // Initialize ROBOTSTXT updater (does not depend on the parent plugin). require_once __DIR__ . '/class-robotstxt-updater.php'; Robotstxt_Updater::init( __FILE__ );