swiftinitpvtltd How to do email and US phone validation via BO new user rule.I have html guest registration and somehow even the type is email in BO column property it lets any value gets saved when html(imported form) form is filled by guest user.
swiftinitpvtltd For now I used crude dynamic rule in BO rules If NOT(ThisUser.EmailAddress CONTAINS('@')) then REPORT ERROR 'Please enter valid email' but I need it with email regex and us phone validation as well.
PointsWell There is also a class in the Apache Validations jar that validates email formats, checking for valid TLD that can be used to create a plug in. Cannot attest to the currency of the TLD data, it seems to be hard coded within the class. https://awareim.com/forum/https://www.awareim.com/forum/d/11751> I found it while doing this
swiftinitpvtltd PointsWell wrote There is also a class in the Apache Validations jar that validates email formats, checking for valid TLD that can be used to create a plug in. Cannot attest to the currency of the TLD data, it seems to be hard coded within the class. https://awareim.com/forum/https://www.awareim.com/forum/d/11751> I found it while doing this Thank you for deep down under formatting help.