Case sensitive subject name

Hi, I am reading the specific subject of the email with the condition I just give Invoice but it’s reading invoice if there is an invoice in the subject it’s won’t read, so can you please tell me how I can read if there is Invoice and invoice in the subject.
image

@Palaniyappan

1 Like

Fine
Do you have any variable that stores the value of invoice
Cheers @balkishan

1 Like

you can always put something like this:

Subject.Contains(“Invoice”) OR Subject.Contains(“invoice”)

Cheers

Why don’t you mention it as

subject.contains(“Invoice”) or Subject.contains(“invoice”)

@balkishan

1 Like

No bro I have subject in the mail, so I am reading the Invoice/invoice only from the subject line.
but sometime it come invoice and sometime Invoice.
so I mentioned in the condition is Invoice. but it’s not reading the invoice only it read the Invoice.

1 Like

Okay Okay I will try it bro

Or to be simple
And precise
Subject.Tostring.ToUpper.Contains(“INVOICE”)
Single step
Cheers @balkishan

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.