Forums
Forums / Plugin: HTML Forms - Simple WordPress Forms Plugin / Multiple recipients form
(@marbaque)
7 years, 1 month ago
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!
(@dvankooten)
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]
[RECIPIENT]
Hope that helps. If not, let us know please.
wow, thank you @dvankooten this is awesome!
just what I was looking for
The topic ‘Multiple recipients form’ is closed to new replies.