Forms exist as their own page type and can act as a Contact Us page OR can be used via a widget anywhere on the site. You can also give it a custom URL to make it easier for your shoppers to get to. The "Send To" email is the email you want the forms to be sent to. That way, if you have multiple forms they can have separate email addresses if necessary.
The following field types can be added:
· Text Box
· Email address box (only one per form, used as the “FROM” address of the email)
· Multiline Textbox
· Checkbox
· Checkbox List
· Radio Button List
· Dropdown
Forms also can have Header and Footer HTML that would go above and below the form on the page.
Just enter the Item in the text box and hit enter to add and save.
These are also rearrangeable with drag/drop.
Form Page:
Sending Product Information With Form
You can set up a contact form to also send product information when it emails as well. This is handy when you may want to build a 'get quote' button on the product page or similar.
The contact form accepts these URL parameters:
ItemID - the id of the item you'd like to quote
VariantIds - any selected variants you'd like to send
Example html to place quote button on a product page:
<input type="submit" name="ibtnQuote" value="Quote" id="ibtnQuote" class="ThemeButton">
<script>
$(function(){
$("#ibtnQuote").click(function (e) {
$modal.find(".modal-title").text("Quote Request");
var url = "/Quote.aspx?ItemID=" + $("#hfItemID").val() + "&VariantIds=" + $("#ctlVariants_hfSelectedVariants").val();
$modal.find("#modal-iframe").attr("src", url);
$modal.modal();
e.preventDefault();
});
});
</script>