I’m getting the error “Database error: Illegal mix of collations (utf8mb4_unicode_ci,IMPLICIT) and (utf8mb4_unicode_520_ci,IMPLICIT) for operation ‘='” When I try to use the “Link subscribers with users by email” on the plugin WP Users Integration
Is a new installation of the two plugins Newsletter + WP Users Integration
This is because your DB table has a different collation. It happens when the DB is updated and you have tables created before and after that update.
You can ask the provider to uniform the collation of all the tables using the “convert” MySQL command and convert them to “utf8mb4_unicode_ci”.
Nothing will happens to you data, is only the way tests are compared.