Skip to content

Instantly share code, notes, and snippets.

@bshaffer
Created February 22, 2011 17:46
Show Gist options
  • Save bshaffer/839048 to your computer and use it in GitHub Desktop.
Save bshaffer/839048 to your computer and use it in GitHub Desktop.
<?php
class mycontrollerActions extends sfActions
{
public function executeSendAnEmail($r)
{
$emailBody = $this->getController()->getPresentationFor('mycontroller', 'email');
// yadda yadda
}
public function executeEmail($r)
{
$this->setLayout('layoutEmail'); // enable special email layout
return $this->renderPartial('module/partial');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment