Include Form Field in Form Subject Line

Permalink
Hi all,

I have a form on my current Concrete site where one of the requirements is an email address. Is there any way to include the users inputted email address in the subject line? Or have the "from" email address from the form be the submitted email address.

 
juddc replied on at Permalink Best Answer Reply 1 Attachment
juddc
You can set the Reply-To address using the email address field in your form (see attached image).

As for the From address, the only thing I'm aware you can do is change the email address - but every instance of the form block will use the same From address. Create a file in application/config called concrete.php. Then add the following:

<?php
return array(
    'email' => array(
        'form_block' => array(
              'address' => 'foo@bar.com'
        )
    )
);