UiPath Apps Integration Outlook - send Text with values

Hi all,

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.

error message:
image

Hi PeCour!

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:

="Text" & Variable

@evan.cohen Thank you!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.