Get First Name From Email Address

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))
)