function email_example_form_submit

Same name in other branches
  1. 7.x-1.x email_example/email_example.module \email_example_form_submit()

Form submission logic for the contact form.

Related topics

File

email_example/email_example.module, line 205

Code

function email_example_form_submit($form, &$form_state) {
    email_example_mail_send($form_state['values']);
}