sendEmailメソッドは、以下を実行する。
return $this->getController()->getPresentationFor($module, $action, 'sfMail');したがって、action以外からsendEmailを実行したい場合は、以下のようにすればよい。
sfContext::getInstance()->getController()->getPresentationFor($module, $action, 'sfMail');

