import users problem
-
I have goal of importing users from another system on regular basis where users overlap with the newsletter user database. I also want to append preferences and not change name values.
Import status == confirmed
Override status of existing users == OFF (must preserve existing status, since a user may have unsubscribed)
Import Mode == UpdateIt seems like the “update” mode should do
if (isset($controls->data[‘override_status’])) {
$subscriber[‘status’] = $controls->data[‘import_as’];
}JUST like “overwrite” mode does. The current logic makes no sense to me.
Now after thinking about this some, I think I can use “skip” mode because any new data should not affect existing newsletter user data.
- The topic ‘import users problem’ is closed to new replies.