• 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 7 years, 1 month 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">john@email.com</option>
    		<option>erica@email.com</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.