Created
January 14, 2013 18:42
-
-
Save kraigh/4532263 to your computer and use it in GitHub Desktop.
cg map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$result_markup = ''; | |
if (valid_email_address($form_state['values']['email'])) { | |
drupal_mail('mimemail', 'key', $send_form_to, language_default(), $params); | |
$result_markup .= '<div>Email Sent</div>'; | |
} else { | |
$result_markup .= $form; | |
form_set_error('email','This e-mail address is invalid.'); | |
} | |
return $result_markup; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment