I am i a automation where i have to filter query to get mail depend on subject line.
but i want add veriable for subject line e.g contains (subject,‘project report no’+srt.number)
how should i write query?
I am i a automation where i have to filter query to get mail depend on subject line.
but i want add veriable for subject line e.g contains (subject,‘project report no’+srt.number)
how should i write query?
You can try to write the query like this assuming srt.number is the variable
"contains(subject, 'project report no" + srt.number.toString + "')"
Hi @Hemant_Deshmukh
In the Filter property of the activity you can pass this query
“[Subject] ‘%project report no " + srtNumber.ToString + "%’”
Try this filter query "subject has 'project report no "+srt.number+"'"
This is only for Classic Office 365 Scope activity. For Integration Service we have filter option like this.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.