Can a User select a recipient from a list to direct Admin notifications to?
Yes, by adding a field named "toemail" to your forms, the User can either pull in, or override the Admin email Setting defined in the Form's Settings.
To pull in the email addresses defined in the Admin email Setting use :
<input type="Hidden" name="toemail" value="2,4">
This will direct email notifications to the 2nd and 4th email addresses defined in the Admin Email Setting in the back end. Multiple email addresses can be separated by commas. Additionally, corresponding names can be assigned for each email address by using a field named "toname".
<input type="Text" name="toname" value="2,4">
If you have the following email addresses defined in the Admin Email Setting :
a@a.a, b@a.a, c@a.a, d@a.a
Then the above example would send email notifications to b@a.a and d@a.a
Both of these fields can also be defined as drop down select menus, or radio buttons allowing Users to select from multiple recipients. For example :
<select name="toemail">
<option value="2">Mark
<option value="2,4">Lisa and James
</select>
To override the email addresses defined in the Admin email Setting use :
<input type="Hidden" name="toemail" value="mark@yourserver.com,lisa@yourserver.com">
Multiple email addresses can be separated by commas. Additionally, correlative names can be assigned for each email address by using a field named "toname".
<input type="Text" name="toname" value="Mark Thompson, Lisa Williams">
Both of these fields can also be defined as drop down select menus, or radio buttons allowing Users to select from multiple recipients. For example :
<select name="toemail">
<option value="mark@yourserver.com">Mark
<option value="lisa@yourserver.com">Lisa
</select>