Miuranga
Miuranga

Reputation: 2463

How to send auto email from mail chimp that triger from the wordpress site

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

Answers (1)

Su4p
Su4p

Reputation: 865

try this

add_action('pdb-before_submit_update', 'getmaguser');
function getmaguser($data) {  print_r($data); print_r($_POST);     } 

Upvotes: 1

Related Questions