Hi,
The plugin includes multiple predefined designs to use with the forms, so you can assign any of predefined layouts, and then, to modify the CSS file to use the design you prefer.
About your question, the Pro version of calculated field allows to send a confirmation email to address entered through the form, but with a formula associated to a calculated field it is possible to assign an email address to the field, and send to it the confirmation email.
I’ll try to explain the process with an example:
1. Inserts an email field in the form, I’ll assume that its field name is fieldname1, and then, assign to this field the classes names: hide the_email, through the “Add Css Layout Keywords” attribute. The classes names are separated by the space character.
2. Insert a text field to allow the users to type their codes, I’ll assume that its field name is fieldname2.
3. Inserts a calculated field in the form, and tick the option: “Hide Field From Public Page”, because this field would be used as an auxiliar field and is not important in the form’s interface.
If the email address of the user with the code 123 is [email protected]. and the email address of the user with the code 321 is [email protected]
4. The equation associated to the calculated field would be:
(function(){
var email = '';
if(fieldname2==123) email='[email protected]';
if(fieldname2==321) email='[email protected]';
jQuery('.the_email input').val(email);
})()
You only should use a similar logic in your project.
Best regards.