Hi @osherezra3363
I just replied to your support ticket about this topic, could you check your inbox please?
Anyway I copy some parts of my reply here, if there would be some other users who are also interested in this answer.
Currently we don’t have a custom integration for MailChimp, but it can be done by asking custom fields before the registration.
As it can be seen in our Documentation:
https://nextendweb.com/nextend-social-login-docs/backend-developer/#custom-fields
you can ask custom fields from the user before the registration.
MailChimp has a code for custom forms, what you can find at the WordPress side bar>MailChimp for WP>Integrations>Custom:
<p>
<label>
<input type="checkbox" name="mc4wp-subscribe" value="1" />
Subscribe to our newsletter. </label>
</p>
so combining this piece of code with our Custom field asking functionality, could synchronize the users registered by NSL with your MailChimp list.
The created custom code could be added as a custom plugin:
https://codex.www.ads-software.com/Writing_a_Plugin
Important note:
To make it work, you will probably need to Disable “Double opt-in” at WordPress side bar>MailChimp for WP>Integrations>Custom
This is because users who register with Social Login rarely active their account since, the provider already verifies that the account is valid. This also means that, they can login without confirming their email address. When the “Double opt-in” setting is on, non-confirmed accounts won’t be synced.