pending commit, finished during MQ/S download ...
[platal.git] / include / xorg.mailer.inc.php
index 3a24e0a..19e64a2 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2004 Polytechnique.org                              *
+ *  Copyright (C) 2003-2006 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -29,12 +29,7 @@ require_once('Smarty.class.php');
 class XOrgMailer extends Smarty
 {
     // {{{ properties
-    
-    /** Directory used to store mails_templates.
-     * Smarty::template_dir subdir used to sotre the mails templates.
-     * The body of the message is taken from a tsmarty template
-     */
-    var $mail_dir = "mails";
+
     /** stores the mail template name */
     var $_tpl;
 
@@ -78,7 +73,7 @@ class XOrgMailer extends Smarty
     {
         // do not try to optimize, in the templates, some function can modify our object, then we
         // have to fetch in the first time, and only then send the mail.
-        $body = $this->fetch($this->mail_dir."/".$this->_tpl);
+        $body = $this->fetch($this->_tpl);
         $mailer = new HermesMailer();
        $mailer->setFrom($this->_from);
        $mailer->addTo(implode(',',$this->_to));