To resolve the issue, temporarily I made a change in the script
controler/registerinvite.php
There I changed line 80 from:
$registerintiveTable->email = $post['jsemail'];
To:
$registerintiveTable->email = str_replace(' ', '',$post['jsemail']);
This has solved my problem. If there is any other suggestion it will be welcome.