Hi @Anonymous ,
Would it be possible to automate such task in the first place, as the task would have to look at the current month and then send that file associated with it.
Yes, that's possible.
Your flow would look like this.
As example I have taken the client name and the folder path in variable.

The line number 4 above will display the complete path of the file that you want to attach.

Then use that variable in your Email action

You can copy paste the below code in a new PAD editor and check the same.
Make sure to add those variables shown in the right.
DateTime.Local DateTimeFormat: DateTime.DateTimeFormat.DateOnly CurrentDateTime=> CurrentDate
Text.FromCustomDateTime DateTime: CurrentDate CustomFormat: $'''ddMMyy''' Result=> FormattedDate
SET FileToAttach TO $'''%MyFolder%\\%ClientName%%FormattedDate%.txt'''
Display.ShowMessage Message: FileToAttach Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed
Outlook.SendEmail Instance: `` Account: `` SendTo: `` IsBodyHtml: False Attachments: FileToAttach
PS: I have used txt as an example. You need to change it to pdf in line number 3.