Hi @thomasw1964,
You will have to concatenate the text (not use a semicolon). Concatenating strings and dynamic values can be done in multiple ways:
//Using the & operator:
"Hello " & User().FullName
//Concatenate function
Concatenate("Hello ", User().FullName)
//String interpolation
$"Hello {User().FullName}"
Since we have quite some dynamic values, I prefer to use string interpolation to improve readability:
Office365Outlook.SendEmailV2(
"xxxxx@xxxxx.org",
"New Client Arrival",
$"{Form1.LastSubmit.ClientID} {Form1.LastSubmit.Program.Value} Client has Medication: {Form1.LastSubmit.ClientOnMeds.Value} Client Probation Status: {Form1.LastSubmit.Probation/Parole.Value}"
)
If this solves your question, would you be so kind as to accept it as a solution.
Thanks!