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'
        )
    )
);

This website stores cookies on your computer. These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media. To find out more about the cookies we use, see our Privacy Policy.