/**
  * the singleton pattern
  *
  * @return Felamimail_Controller_Message_Send
  */
 public static function getInstance()
 {
     if (self::$_instance === NULL) {
         self::$_instance = new Felamimail_Controller_Message_Send();
     }
     return self::$_instance;
 }