I have a form with a text input field that I would like to use as the subject line when sending an email. I feel like I have the correct answer but it doesn't appear to be working. Here is my sample code:
Office365Outlook.SendEmailV2(
"myemail@email.com",
"Downtime - " & DowntimeType.Text,
varEmailMessage,
{Importance: "High"}
);
ResetForm('Downtime Form');
No errors are being thrown but it doesn't add the input from DowntimeType.Text. The email I receive has the subject line as "Downtime - " and nothing else. I've also tried using Concatenate to no avail. I don't work with forms often so maybe it has something to do with the fact that the input is within a DataCard?