%s

', \esc_html__( 'SMTP Amazon SES (by ROBOTSTXT) 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(); } );