I have place this on my application.ini file:
contact.email.address = "[email protected]"
contact.email.name = "Test Name"
Then on my index controller action I have done:
$configOptions = $this->getInvokeArg('bootstrap')->getOptions();
$contactAddress = $configOptions->contact.email.address;
$this->view->contact = $contactAddress;
On my view I have:
var_dump($this->contact); but I'm receiving NULL.
What am I missing ?