From a620e47547e5be0fd4321dcc544dfca73b49b1e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Fri, 19 Jun 2015 19:00:11 +0200 Subject: [PATCH] Deprecate old mail API --- wcfsetup/install/files/lib/system/mail/DebugMailSender.class.php | 1 + wcfsetup/install/files/lib/system/mail/Mail.class.php | 1 + wcfsetup/install/files/lib/system/mail/MailSender.class.php | 1 + wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php | 1 + wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php | 1 + 5 files changed, 5 insertions(+) diff --git a/wcfsetup/install/files/lib/system/mail/DebugMailSender.class.php b/wcfsetup/install/files/lib/system/mail/DebugMailSender.class.php index a74703110b..87f63eb33e 100644 --- a/wcfsetup/install/files/lib/system/mail/DebugMailSender.class.php +++ b/wcfsetup/install/files/lib/system/mail/DebugMailSender.class.php @@ -13,6 +13,7 @@ use wcf\util\FileUtil; * @package com.woltlab.wcf * @subpackage data.mail * @category Community Framework + * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*. */ class DebugMailSender extends MailSender { /** diff --git a/wcfsetup/install/files/lib/system/mail/Mail.class.php b/wcfsetup/install/files/lib/system/mail/Mail.class.php index 8a795d0c09..61e7990257 100644 --- a/wcfsetup/install/files/lib/system/mail/Mail.class.php +++ b/wcfsetup/install/files/lib/system/mail/Mail.class.php @@ -14,6 +14,7 @@ use wcf\util\StringUtil; * @package com.woltlab.wcf * @subpackage data.mail * @category Community Framework + * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*. */ class Mail { /** diff --git a/wcfsetup/install/files/lib/system/mail/MailSender.class.php b/wcfsetup/install/files/lib/system/mail/MailSender.class.php index 3b6822172d..02f2363613 100644 --- a/wcfsetup/install/files/lib/system/mail/MailSender.class.php +++ b/wcfsetup/install/files/lib/system/mail/MailSender.class.php @@ -10,6 +10,7 @@ namespace wcf\system\mail; * @package com.woltlab.wcf * @subpackage data.mail * @category Community Framework + * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*. */ abstract class MailSender { /** diff --git a/wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php b/wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php index dee1be4b81..6e25338b32 100644 --- a/wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php +++ b/wcfsetup/install/files/lib/system/mail/PHPMailSender.class.php @@ -10,6 +10,7 @@ namespace wcf\system\mail; * @package com.woltlab.wcf * @subpackage data.mail * @category Community Framework + * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*. */ class PHPMailSender extends MailSender { /** diff --git a/wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php b/wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php index 082dfb16ab..8bbce40a06 100644 --- a/wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php +++ b/wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php @@ -13,6 +13,7 @@ use wcf\util\StringUtil; * @package com.woltlab.wcf * @subpackage data.mail * @category Community Framework + * @deprecated The Community Framework < 2.2 mail API is deprecated in favor of \wcf\system\email\*. */ class SMTPMailSender extends MailSender { /** -- 2.20.1