Reputation: 2463
I've wordoress site for magazines that have email subscriptions for selecting magazines. subscribers will will add to the mail chimp subscription groups according to the selecting magazines. Magazines will be uploaded to wordpress back end plugin. I want to send auto email for those people who subscribe to that magazine in mail chimp.
Is there any way to do that? I mean trigger mailchimp auto email according to the wordpress form submit.
Upvotes: 0
Views: 256
Reputation: 865
try this
add_action('pdb-before_submit_update', 'getmaguser');
function getmaguser($data) { print_r($data); print_r($_POST); }
Upvotes: 1