Only check mails that don't have attachments

Hello,
Is there a way to only check the mails that don’t have pdf attachments?

Hello @E_lanotte,

You can use a if contion where setting the condition and has attachments, if has attachments then do nothing and if there is no attachments it will go in else loop keep your logic there.

Thanks &Regards
Raj Parsana

3 Likes

It’s the condition I don’t know/find :blush:

Hello @E_lanotte,

Please check the workflow
test.xaml (9.0 KB)

3 Likes

hi @E_lanotte,

Here we are verifying wether or not we have attachment

Now we want to restrict pdf Type attachment- Have a look at below thread…


Mukesh

1 Like

Should I save/filter the attachments in the init or process ?

that will depend on the implementation.

If RE Framework - When the process is executed , The INIT State is Initialized at the beginning at once , If something went wrong the Process is Stopped, If we put this logic inside INIT and an exception occurs the Process stops.

If we put this in Process.Xaml - Then we can have logic inside process.xaml on how to handle the Same.


Mukesh

1 Like