From 07e3fb987903e38e0b3bc47a7866471be274c3c7 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 25 May 2010 04:04:33 +0000 Subject: [PATCH] API CHANGE Removed deprecated Email_Template class, please use Email instead! (from r100503) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@105583 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- email/Email.php | 16 ---------------- 1 file changed, 16 deletions(-) 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