File "SMTPMapper.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/lib/Mailer/Methods/ErrorMappers/SMTPMapper.php
File size: 346 bytes
MIME-type: text/x-php
Charset: utf-8

<?php declare(strict_types = 1);

namespace MailPoet\Mailer\Methods\ErrorMappers;

if (!defined('ABSPATH')) exit;


use MailPoet\Mailer\Mailer;

class SMTPMapper extends PHPMailerMapper {
  use BlacklistErrorMapperTrait;

  public const METHOD = Mailer::METHOD_SMTP;

  protected function getMethodName(): string {
    return self::METHOD;
  }
}