function webform_email_address_validate in Webform 7.4
Same name and namespace in other branches
- 6.3 includes/webform.emails.inc \webform_email_address_validate()
- 7.3 includes/webform.emails.inc \webform_email_address_validate()
Validate handler for webform_email_edit_form() and webform_emails_form().
2 string references to 'webform_email_address_validate'
- webform_emails_form in includes/
webform.emails.inc - Overview form of all components for this webform.
- webform_email_edit_form in includes/
webform.emails.inc - Form for configuring an e-mail setting and template.
File
- includes/
webform.emails.inc, line 510 - Provides interface and database handling for e-mail settings of a webform.
Code
function webform_email_address_validate($form, &$form_state) {
if ($form_state['values']['email_option'] == 'custom') {
webform_email_validate($form_state['values']['email_custom'], 'email_custom', FALSE, TRUE, TRUE);
}
}