Having users with no emails set in Intercom service

288 Views Asked by At

I'm using intercom SDK and implement [Intercom registerUserWithEmail:...]; methods after user logs in or registers, also every launch i call:

- (void)applicationDidBecomeActive:(UIApplication *)application {

    NSString *userEmail = [Utilities getUserEmail];
    if (lastUsedEmail) {
        [Intercom registerUserWithEmail: userEmail];
    }else
    {
        [Intercom registerUnidentifiedUser];
    }
}

Here is how it looks like in intercom web service: screenshot from intrecom

Why these email fields are Unknown for particular users?

1

There are 1 best solutions below

1
On

Have you checked that registerUnidentifiedUser is not called? If it's called - that's the source of those email-less users.