function email_example_form_validate
Form validation logic for the contact form.
Related topics
File
-
email_example/
email_example.module, line 198
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.'));
}
}