function email_example_form_validate

Same name in other branches
  1. 7.x-1.x email_example/email_example.module \email_example_form_validate()

Form validation logic for the contact form.

Related topics

File

email_example/email_example.module, line 196

Code

function email_example_form_validate($form, &$form_state) {
    if (!valid_email_address($form_state['values']['email'])) {
        form_set_error('email', t('That e-mail address is not valid.'));
    }
}