This documentation is only for developers. If you are not a developer then you have no need to read this.
First read this post to understand some basics.
The following is an example code that shows you how use the item specific signup hook (this hook is called for each item that the customer purchases):
add_action('eStore_item_specific_autoresponder_signup', 'my_estore_custom_signup'); function my_estore_custom_signup($signup_data) { eStore_payment_debug('Received request for item specific autoresponder signup action.', true); $firstname = $signup_data['firstname']; $lastname = $signup_data['lastname']; $email = $signup_data['email']; $list_name = $signup_data['list_name']; //TODO - write your autoresponder signup code here. }
The value you specify in the “List Name” field (under the autoresponder settings section of the product) will be passed in the above function using the “list_name” parameter.
Note: We provide technical support for our premium plugins via our customer only support forum