
In Power app forms - As below I have a field called "Supplier Email" , when user enter the correct email address then below text "Please Enter Valid Email ID" gets disappear and form get submitted. concern is when user enter the invalid Email ID also it gets submitted but ideally it shouldn't. How to restrict the user that only correct email id will submit or else it should not success and throw error message?
I have a formula on "Supplier Email" field >> on Error Message >> Text Property >>
Coalesce(
Parent.Error,
If(
!IsMatch(
DataCardValue8.Text,
"[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*"),
"Please Enter Valid Email ID")
)
Please help to resolve this situation.