Skip to content

Instantly share code, notes, and snippets.

@pixel5
Created May 5, 2015 18:18
Show Gist options
  • Save pixel5/811f362b38d5eb6e237b to your computer and use it in GitHub Desktop.
Save pixel5/811f362b38d5eb6e237b to your computer and use it in GitHub Desktop.
For ashopin
<?php
function YOURMODULE_form($form,&$form_state) {
// ... the rest of your form ...
$form['email_button'] = array(
'#type' => 'button',
'#value' => 'Send Email',
'#ajax' => array(
'event' => 'click',
'callback' => 'YOURMODULE_ajax_send_email',
),
);
// ... goes in here somewhere ...
}
function YOURMODULE_ajax_send_email($form,&$form_state) {
// do your send-email stuff here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment