
Get the first name from email address and make first letter uppercase
concat(
toUpper(take(first(split(split(triggerOutputs()?['body/from'], '@')[0], '.')), 1)),
toLower(skip(first(split(split(triggerOutputs()?['body/from'], '@')[0], '.')), 1))
)
No Comments