• Resolved marbaque

    (@marbaque)


    Is it possible to select the recipient of a form, via a dropdown field?

    I have a list of recipients, so I need to allow users to select who they are sending it to

    Thank you in advance!

    • This topic was modified 5 years, 12 months ago by marbaque.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Marbaque,

    Yes, you can use field variables in your email settings to get the email address from a field value.

    Example HTML:

    
    <p>
    	<label>Recipients</label>
    	<select name="RECIPIENT" required="required">
    		<option selected="selected">[email protected]</option>
    		<option>[email protected]</option>
    	</select>
    </p>
    

    Example email setting:

    To: [RECIPIENT]

    Hope that helps. If not, let us know please.

    Thread Starter marbaque

    (@marbaque)

    wow, thank you @dvankooten this is awesome!

    just what I was looking for

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Multiple recipients form’ is closed to new replies.