I have added a setting to my config.yml file as such:
app.config: contact_email: somebody@gmail.com ...
For the life of me, I can\'
Rather than defining contact_email within app.config, define it in a parameters entry:
contact_email
app.config
parameters
parameters: contact_email: somebody@gmail.com
You should find the call you are making within your controller now works.