Hello,
If you need to insert all values of a multi-valued property to an e-mail notification, you'll have to send e-mail using a script.
Example:
$bodyText = New-Object "System.Text.StringBuilder"
try
{
$values = $Context.TargetObject.GetEx("adm-CustomAttributeTextMultiValue1")
}
catch
{
$values = $NULL
}
if ($values -ne $NULL)
{
foreach ($value in $values)
{
$bodyText.AppendLine($value)
}
}
# Send mail
$Context.SendMail("%mail", "My Subject", $bodyText.ToString(), $NULL)
Currently it is impossible to use a multi-valued property in conditions. Despite the fact that the feature is already implemented, it will be available in the next release. If you need this functionality urgently, just let us know and we'll create a custom build for you.