Hi @Anonymous ,
Do you want to check whether the table contains the data in the textinput, if it contains, then send an email to current user?
Could you tell me the field's data type that you want to filter based on the textinput?
I assume that it is text type ,then try this formula:
If(!IsEmpty(Lookup([dbo].[Usuario]',TextInput1_14.Text in fieldname)),
Office365Outlook.SendEmail(
User().Email,
"Recuperar Contraseña",
email body
)
)
//please replace fieldname with the field that you want to filter based on.
If you filter data, you need to specify the field name.
If there's record meeting the requirements, the !IsEmpty()function will return ture, then the sendemail action will act.
Best regards,