Hello @tlkamps ,
it's easier for sure to get the information from the email subject than from the email content. If you can guarantee that the email subject will always have the same format, e.g. date-fund-schedule (pieces separated by - character), you can use the split(...) expression on the subject to split it by that character
split([SubjectDynamicContent], '-')
That will give you an array with the - separated pieces, e.g.
[
"12/31/2020",
"Fund A",
"Schedule A"
]
and since it's an array, you can access it by the index in the array [x] starting from [0]:
split([SubjectDynamicContent], '-')[0] will give you "12/31/2020"
split([SubjectDynamicContent], '-')[1] will give you "Fund A"
split([SubjectDynamicContent], '-')[2] will give you "Schedule A"