File "PHPMailMapper.php"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/mailpoet/lib/Mailer/Methods/ErrorMappers/PHPMailMapper.php
File size: 352 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 PHPMailMapper extends PHPMailerMapper {
  use BlacklistErrorMapperTrait;

  public const METHOD = Mailer::METHOD_PHPMAIL;

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