This field acts almost the same as simple text input. It just automatically adds email validator that assures correct email address to be entered.
Usage example
<?php
$form = new \Construct\Form();
$form->addField(new \Construct\Form\Field\Email(
array(
'name' => 'email',
'label' => 'Enter your e-mail',
'hint' => 'Enter your business e-mail address here.'
)
));
echo $form->render();