diff --git a/email/Email.php b/email/Email.php index d421466df..238205246 100755 --- a/email/Email.php +++ b/email/Email.php @@ -610,22 +610,6 @@ class Email extends ViewableData { } } -/** - * Implements an email template that can be populated. - * - * @deprecated 2.4 Please use Email instead - * @package sapphire - * @subpackage email - */ -class Email_Template extends Email { - - public function __construct($from = null, $to = null, $subject = null, $body = null, $bounceHandlerURL = null, $cc = null, $bcc = null) { - parent::__construct($from, $to, $subject, $body, $bounceHandlerURL, $cc, $bcc); - user_error('Email_Template is deprecated. Please use Email instead.', E_USER_NOTICE); - } - -} - /** * Base class that email bounce handlers extend * @package sapphire