私はsymfony 1.4を使用しています。そして、sfMailer を取得する前に、sfContext インスタンスを作成しますが、作成中に symfony は次の行をコンソールに出力します。
>> sfPatternRouting Connect sfRequestRoute "sf_captchagd" (/captcha)
>> sfPatternRouting Match route "homepage" (/) for / with parameters array ( 'module' => 'main', 'action' => 'index',)
ご覧のとおり、sfContext
ルーティング関連のものと、おそらくその他の不要なものを作成します。必要なのは、部分テンプレートと sfMailer インスタンスの 2 つだけです。sfContext
インスタンスを作成するときの行は次のとおりです。
sfContext::createInstance($this->configuration);
sfContext::getInstance()->getConfiguration()->loadHelpers('Partial');