hugofirth / laravel-mailchimp

A composer package for the MailChimp API PHP class (as provided by MailChimp) which supports the Laravel 4 framework.
96 stars 27 forks source link

How to assign tags user immediately #44

Open yep1126 opened 3 years ago

yep1126 commented 3 years ago

Hi,

I'm trying to assign tags to a specific new subscriber using the library is this the correct way?

MailchimpWrapper::lists()->updateMember($list_id, array('email'=>$mail['email']),["tags" => [ "name" => "TAG_NAME", "status" => "active" ]]);

Thanks!