| 6 email_example.module | email_example_form_submit($form, &$form_state) |
| 7 email_example.module | email_example_form_submit($form, &$form_state) |
| 8 email_example.module | email_example_form_submit($form, &$form_state) |
Form submission logic for the contact form.
Related topics
File
- email_example/
email_example.module, line 205 - Example of how to use Drupal's mail API.
Code
function email_example_form_submit($form, &$form_state) {
email_example_mail_send($form_state['values']);
}
Login or register to post comments