5.8 express forms - Reply to field

Permalink
I am pulling my hair out with this.

Why are the FROM and REPLY TO fields always the same? i.e the default email address I have put into the config.php file

I have selected for the EMAIL field to be the reply to address but it never is, it's always coming through as the default?

helenmarie
 
helenmarie replied on at Permalink Reply
helenmarie
It would appear that both the reply to and the from fields are listening to this in the concrete/config/controller.php file

'form_block' => [
            'address' => false,
        ],


I have changed this to

'form_block' => [
            'address' => 'clientsemail@clientsdomain.com',
        ],


and both the 'reply to' AND the 'from' fields change to whatever is in that address, instead of the 'reply to' being whatever is submitted through the email field which I selected when adding the form?