Creating email field. The field is still textfield, you just have to make validation for the field.
Source code viewer
// This is a field code. '#type' => 'textfield', '#title' => t('Email'), ); // This function is the validation function, you can rename it to anything function HOOK_email_validate($element, &$form_state, $form) { if (!valid_email_address($element['#value'])) { form_error($element, t('Please enter a valid email address.')); } }Programming Language: PHP