Your approach
It seems to me that manually creating contacts is completely unnecessary in your case.
As I understand from your post, here's what happens:
- A user visits your website.
- Sitecore creates a new contact (ID: xxx).
- The user browses the website and submits your form.
- A confirmation email is sent to the user's email address.
- The user clicks on the link in the email and hits a confirmation page on the site.
- Your code creates a new contact in xDB (ID: yyy).
As a result, you have two separate contacts in xDB that are not related to each other, from Sitecore's perspective.
Now, to your question:
Will Sitecore identify user as contact (and merge in existing anonymous contact) or will it create new anonymous contact each time?
If the user is visiting from the same browser, Sitecore will recognize them as the original contact (ID: xxx) based on a cookie. Sitecore will not create a new contact in this case.
If the user is visiting from another browser or device, he will not be recognized as any of the existing contacts and a new anonymous contact will be created (ID: zzz).
As you can see, Sitecore has no way of automatically using the contact you created (ID: yyy).
Suggested solution
The only way to make Sitecore recognize a user as a specific contact is to use the identification API. In short, what you can do is this:
Sitecore.Analytics.Tracker.Current.Session.Identify(identifier);
Here's what I suggest you to do:
- Do not create new contacts manually—there's just no need for that.
- When the user has submitted the form, you invoke
Identify()
and pass the user's email address as the identifier
. This will set the user's email address as the identifier of the current contact.
- When the user comes back from the email link you sent, you invoke
Identify()
once again. This will make sure that, even if the user is coming from another device, the same xDB contact will be used in his session. You'll need to pass the same email address to Identify()
, so make sure you have access to it—for example, you can include it in your email confirmation link as a query string parameter.
- Use
Sitecore.Analytics.Tracker.Current.Contact
and populate the current contact's facets with the information you've collected about the user.
- If you have a login functionality, remember to invoke
Identify()
on successful login attempts—again, this is to ensure that the same contact is used for all sessions of the same user.