PDF download from specific Mail ID

Hello all, here I want to download the PDF from those specific Mail ID . I have list of mail ID.
how can i put those mail Id in If condition for download the PDF.
please help me

@dhanashree22

You can create a array of strings like

arrEmails = {www@www.com, www@ww.com}

Now in If condition you can check like arrEmails.Contains(“www@www.com”)

Then->Your logic if matches
Else → Your logic if not matches

Hope this will help you

Thanks