Objective: send an email when a specific field (Status) is update.
The problem: The email is going with the previous value. Ex.: I am changing the status from A to B and the email is saying that the value is A.
I am using the function: "Office365Outlook.SendEmailV2" on the "OnSucess" of the form:
If(varChange_Status=true, Office365Outlook.SendEmailV2(varRecord.Owner.Email,"Stauts update - "& varRecord.Status.Value,))
The VarChange_Status changes to True in "OnChange" of the Status.
It seams that it are sending the email before save the information