automatewoo/includes/Mailer_Plain_Text.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

31 lines
447 B
PHP

<?php
namespace AutomateWoo;
defined( 'ABSPATH' ) || exit;
/**
* Mailer class for plain text emails.
*
* @since 4.4.0
*/
class Mailer_Plain_Text extends Mailer_Abstract {
/**
* The email format type.
*
* @var string
*/
public $email_type = 'plain';
/**
* Get the email body.
* For plain text emails simply returns the $content.
*
* @return string
*/
public function get_email_body() {
return $this->content;
}
}