We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 37042
    • 384 Posts
    I have a simple contact form that emails the results to a client email address.

    When my client gets the Form results I want them to hit 'reply' and be able to reply to the email address the user submitted.

    Using the following should work
    &emailReplyTo=`[[+email]]` 

    but it tries to email the addresses listed in the
    &emailTo=`REMOVED` 


    My FormIt call
    [[!FormIt? 
    &hooks=`email,redirect` 
    &emailTpl=`Email-Results` 
    &emailTo=`REMOVED` 
    &emailReplyTo=`[[+email]]` 
    &emailFromName=`[[+name]]` 
    &emailSubject=`Contact Form` 
    &redirectTo=`18`
    &validate=`name:required,
                       email:email:required,
                       details:stripTags` 
    ]]


    Part of my actual form
    <label for="email">Email: <span class="required">*</span> <span class="error">[[!+fi.error.email]]</span> </label> <input id="email" type="text" name="email" value="[[!+fi.email]]" />
    

      ...