1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?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; } }
|