Question:
How to show email id instead of customer name in recipients column of undelivered email saved search ?

Solution:
In the saved search results columns session use below mentioned formula as formula(Text)
case when instr({recipients},'<‘)>0 then replace(replace({recipients}, substr({recipients},1,instr({recipients},'<‘)),”),’>’,”) else {recipients} end\
