diff --git a/src/Abstracts/EmailAbstract.php b/src/Abstracts/EmailAbstract.php index 64b9206228f17ed313b447e16d4ae28b3a2e729d..d0d87306615bf1ff1537a702f142298d7666e82d 100644 --- a/src/Abstracts/EmailAbstract.php +++ b/src/Abstracts/EmailAbstract.php @@ -271,18 +271,7 @@ abstract class EmailAbstract implements EmailInterface { * @throws Exception */ public function get_content(): string { - if ( ! $this->content ) { - throw new Exception( 'Empty email content' ); - } - - return ''; - } - - /** - * @return mixed - */ - public function get_object() { - return ''; + return $this->content; }