Created
February 22, 2011 17:46
-
-
Save bshaffer/839048 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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