You are here

function contact_personal_form_validate in Contact 7.2

Form validation handler for contact_personal_form().

See also

contact_personal_form()

File

./contact.pages.inc, line 249
User page callbacks for the contact module.

Code

function contact_personal_form_validate($form, &$form_state) {
  if (!valid_email_address($form_state['values']['mail'])) {
    form_set_error('mail', t('You must enter a valid e-mail address.'));
  }
}