使用 Symfony 1.4 框架,是否可以从 lib/mail 目录中获取模板并将其用作操作中的模板?我认为这不可能使用 setTemplate ,因为这是本机方法:
public function setTemplate($name, $module = null)
{
if (sfConfig::get('sf_logging_enabled'))
{
$this->dispatcher->notify(new sfEvent($this, 'application.log', array(sprintf('Change template to "%s/%s"', null === $module ? 'CURRENT' : $module, $name))));
}
if (null !== $module)
{
$name = sfConfig::get('sf_app_dir').'/modules/'.$module.'/templates/'.$name;
}
sfConfig::set('symfony.view.'.$this->getModuleName().'_'.$this->getActionName().'_template', $name);
}