function _webform_action_set_email in Webform 7.4
Implements _webform_action_set_component().
File
- components/
email.inc, line 345 - Webform module email component.
Code
function _webform_action_set_email($component, &$element, &$form_state, $value) {
$element['#value'] = $value;
form_set_value($element, $value, $form_state);
}