Simply add email to MailChimp list
- Copy files to your project
- Enter your DC and ApiKey in WBMailChimp.h
- Call:
[WBMailChimp addEmail:@"[email protected]" toList:@"myListId" resBlock:^(BOOL success,NSError *err){
if (success) {
NSLog(@"Added successfully");
} else {
NSLog(@"Failed to add: %@",err.localizedDescription);
}
}];