aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mail.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mail.php')
-rw-r--r--lib/mail.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/mail.php b/lib/mail.php
index e15af277a64..b339b33e962 100644
--- a/lib/mail.php
+++ b/lib/mail.php
@@ -113,9 +113,12 @@ class OC_Mail {
*/
public static function getfooter() {
- $txt="\n-- \n";
- $txt.="ownCloud\n";
- $txt.="Your Cloud, Your Data, Your Way!\n";
+ $defaults = new OC_Defaults();
+
+ $txt="\n--\n";
+ $txt.=$defaults->getName() . "\n";
+ $txt.=$defaults->getSlogan() . "\n";
+
return($txt);
}