/**
  * get new mail template array (including subject and message body)
  */
 function readMailTemplate($a_lang)
 {
     if (!is_array($this->amail[$a_lang])) {
         require_once './Services/WebDAV/classes/class.ilObjDiskQuotaSettings.php';
         $this->amail[$a_lang] = ilObjDiskQuotaSettings::_lookupReminderMailTemplate($a_lang);
         $this->amail["body"] = trim($this->amail["body"]);
         $this->amail["subject"] = trim($this->amail["subject"]);
     }
     return $this->amail[$a_lang];
 }