/**
  * Fonction d'envois
  */
 function send($from = null, $fromName = null)
 {
     //      static $mailer = null;
     //      if ($mailer === null){
     $mailer = new CopixEMailer();
     //      }
     return $mailer->send($this);
 }
 /**
  * Sends the EMail
  * @param string $from the mail adress to send the email with
  * @param sting $fromName the name of the expeditor
  */
 public function send($from = null, $fromName = null)
 {
     $sender = new CopixEMailer();
     return $sender->send($this, $from, $fromName);
 }