we want to send an E-Mail using the outlook integration in UiPath Apps. In the E-Mail body we want to combine text (string) with variables of which some are doubles.
How to do that?
In E-Mail body we tried different approaches =“Test” + variable or =variable. It only works for string values.
I know what’s going on here, you’re trying to concatenate a string with the + operator. When trying to ‘add’ Strings in apps they are evaluated as 0, so this is being evaluated as:
0 + 3.227393 (which still results in a double)
Instead, you’ll need to use the Concat function or the & operator for string concatenation: