Skip to content

Instantly share code, notes, and snippets.

@ricardofiorani
Created December 16, 2014 17:12
Show Gist options
  • Select an option

  • Save ricardofiorani/ef51c173b9cd2e7d82ad to your computer and use it in GitHub Desktop.

Select an option

Save ricardofiorani/ef51c173b9cd2e7d82ad to your computer and use it in GitHub Desktop.
public function control_contato() {
$this->titulo = 'Contato';
if ($_POST) {
if ($this->mailer->enviaEmail($_POST)) {
return $this->redirect('contato-sucesso');
} else {
return $this->redirect('contato-erro');
}
}
return $this->renderizar('contato');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment