Hello!
I have a multiple choice box and whenever the selected value equals "Vrijgegeven", I want to send a mail.
This is the code I've tried so far, it sends the mail without the if statement:
If(
DataCardValue29.SelectedText.Value = "Vrijgegeven";
Office365Outlook.SendEmail(
"The email";
"Nieuwe vrijgegeven manco";
"Nieuwe vrijgegeven manco met bestandsnaam: " & DataCardValue12.Text
)