email_example_form_validate

6 email_example.module email_example_form_validate($form, &$form_state)
7 email_example.module email_example_form_validate($form, &$form_state)
8 email_example.module email_example_form_validate($form, &$form_state)

Form validation logic for the contact form.

Related topics

File

email_example/email_example.module, line 196
Example of how to use Drupal's mail API.

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.'));
  }
}
Login or register to post comments