get_connections_manager()->get_primary_connection(); } $description = sprintf( wp_kses( /* translators: %1$s - URL to mailersend.com; %2$s - URL to MailerSend documentation on wpmailsmtp.com. */ __( 'MailerSend is a reliable transactional email provider with powerful features. They offer 12,000 emails per month for free and have affordable plans for higher volumes. Their modern API and excellent deliverability make them a great choice for WordPress sites.

To get started, read our MailerSend documentation.', 'wp-mail-smtp' ), [ 'strong' => [], 'br' => [], 'a' => [ 'href' => [], 'rel' => [], 'target' => [], ], ] ), esc_url( 'https://mailersend.com/' ), // phpcs:ignore WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound esc_url( wp_mail_smtp()->get_utm_url( 'https://wpmailsmtp.com/docs/how-to-set-up-the-mailersend-mailer-in-wp-mail-smtp/', 'MailerSend Documentation' ) ) ); parent::__construct( [ 'logo_url' => wp_mail_smtp()->assets_url . '/images/providers/mailersend.svg', 'slug' => self::SLUG, 'title' => esc_html__( 'MailerSend', 'wp-mail-smtp' ), 'description' => $description, 'supports' => [ 'from_email' => true, 'from_name' => true, 'return_path' => false, 'from_email_force' => true, 'from_name_force' => true, ], ], $connection ); } /** * Output the mailer provider options. * * @since 4.5.0 */ public function display_options() { $get_api_key_url = 'https://app.mailersend.com/api-tokens'; ?>
connection_options->is_const_defined( $this->get_slug(), 'api_key' ) ) : ?> display_const_set_message( 'WPMS_MAILERSEND_API_KEY' ); ?> get_slug(); $value = $this->connection_options->get( $this->get_slug(), 'api_key' ); UI::hidden_password_field( [ 'name' => "wp-mail-smtp[{$slug}][api_key]", 'id' => "wp-mail-smtp-setting-{$slug}-api_key", 'value' => $value, 'clear_text' => esc_html__( 'Remove API Key', 'wp-mail-smtp' ), ] ); ?>

' . esc_html__( 'Get API Key', 'wp-mail-smtp' ) . '' ); ?>

'wp-mail-smtp[' . $this->get_slug() . '][has_pro_plan]', 'id' => 'wp-mail-smtp-setting-' . $this->get_slug() . '-has_pro_plan', 'value' => 'true', 'checked' => (bool) $this->connection_options->get( $this->get_slug(), 'has_pro_plan' ), 'disabled' => $this->connection_options->is_const_defined( $this->get_slug(), 'has_pro_plan' ), ] ); ?>

' . esc_html__( 'pricing page', 'wp-mail-smtp' ) . '' ); ?>