[Solved] Verification form error
When you click on that verification link from an email, the values are going to be passed via GET not via POST. 2 solved Verification form error
When you click on that verification link from an email, the values are going to be passed via GET not via POST. 2 solved Verification form error
You must use CFDB7 plugin to save CF7 data here is an example for saving and retrieving data You need create hidden field in CF7 form and insert into it uniqID (You can use plugins for adding a unique field cf7-submission-id create a page on the site (create a template for the page) to which … Read more
Try this: SecureRandom random = new SecureRandom(); String randomCode = new BigInteger(30, random).toString(32).toUpperCase(); 1 solved How to generate random code for Android application email verification