Hi Team,
I would like to get only the names of all the attachments received in my mail box.
Thanks,
Jeevan.
Hi Team,
I would like to get only the names of all the attachments received in my mail box.
Thanks,
Jeevan.
Say you get your mails in a variable mails
Else use linq inside the mails loop
Mail.attachments.select(function(x) x.name).toarray()
Cheers