sfRequest->addHttpMeta($key, $value, $override = true)は、$keyをnomalizeしてセット

sfRequest->addHttpMeta($key, $value, $override = true)は、$keyをnomalizeしてセットするので注意!
たとえば、content-typeはContent-Typeとなる。
そのため、view.ymlでhttp_metasを設定して、addHttpMetaで設定したkeyを上書きする場合、上記の例では、
content-type: text/xml
では上書きされないようである。
Content-Type: text/xml
とすると、うまくいった。
両方書いてもokだった。

sfAction->sendEmail($module, $action)

sfAction->sendEmail($module, $action)

The ->sendEmail() method of the sfAction class is a special kind of ->forward() that executes another action but comes back afterward (it doesn't stop the execution of the current action). In addition, it returns a raw email that can be written into a log file (you will find more information about the way to log information in the debug chapter of the symfony book).

http://www.symfony-project.com/book/trunk/email