Email subscription
The Batch Cordova Plugin allows you to:
Add and remove email address from a user profile. The profile will automatically be created if needed.
Edit a profile's marketing subscription.
Here is how to set an email with a marketing subscription:
batch.profile.getEditor()
.setEmailAddress("john.doe@batch.com") // Null to erase. Addresses must be valid.
.setEmailMarketingSubscription("subscribed") // or "unsubscribed"
.save();
Last updated
Was this helpful?