Use the email prefix for the proxyAddresses mapping

In our proxyAddresses mapping, we want to set multiple values using the same email prefix taken from UKG.

Here is an example of what is needed.

If the email address in UKG is set to john.doe @example.com

We want to use the prefix from john.doe@example.com (which is john.doe) and setup multiple email addresses.

We want to set proxyAddreses to:

SMTP: john.doe @example.com; smtp: john.doe@example.onmicrosoft.com

Please try this expression which uses the email prefix:

‘SMTP:’ + Person.EmailAddress + ‘; smtp:’ + Person.EmailAddress.Split(‘@’)[0] + ‘@example.onmicrosoft.com

did not work.
image

disregard. it worked when I did a “Conditional Expression”.

Please replace the single quotes you have, when you copy and paste it changes the text encoding