Email subscription
// This requires to have a custom user ID registered by calling the `identify` method beforehand.
BatchProfile.editor { editor in
try? editor.setEmailAddress("john.doe@batch.com") // Nil to erase. Addresses must be valid.
editor.setEmailMarketingSubscriptionState(.subscribed) // or .unsubscribed
// If you prefer to use BatchProfile.editor() with local variable instead of using a closure,
// remember to use editor.save() afterwards so that the changes are taken into account.
}// This requires to have a custom user ID registered by calling the `identify` method beforehand.
[BatchProfile editWithBlock:^(BatchProfileEditor * _Nonnull editor) {
NSError *error = nil;
[editor setEmailAddress:@"john.doe@batch.com" error:&error]; // Nil to erase. Addresses must be valid.
[editor setEmailMarketingSubscriptionState:BatchEmailSubscriptionStateSubscribed]; // or BatchEmailSubscriptionStateUnsubscribed
// If you prefer to use [BatchProfile editor] instead of `editWithBlock`,
// remember to use [editor save] afterwards so that the changes are taken into account.
}];Last updated

