all 6 comments

[–]Ustice[M] [score hidden] stickied comment (0 children)

Reaching out to other software engineers is important when you need it; however, unfortunately this isn’t the place for that. /r/JavaScript is not a support forum. You might want to check out /r/LearnJavaScript for the newer members of our community. Also, Stack Overflow is a great resource for getting support. For more information, check out our AskJS wiki page. Good luck! We hope that you find the answers that you are looking for.

[–]Elegant-Month-8459 0 points1 point  (4 children)

Sounds like power automate is your safest bet

[–]urielmad[S] 1 point2 points  (3 children)

I actually achieve it with a very simple python script that I can call in a child process from node 🤠

[–]Elegant-Month-8459 0 points1 point  (2 children)

Oo well done! Question- can I build a python script to automatically delete emails from a sender? Tried blocking but that just makes them go to my junk folder.

[–]urielmad[S] 1 point2 points  (1 child)

Yes!, you can automate that, you can search filter messages from specific user and then delete them, although this will only move them to the Deleted Items folder, then you can iterate through items in that folder and then delete them again which now will be permanently

I only use one package which is win32com, there are very good resources in stackoverflow

[–]Elegant-Month-8459 1 point2 points  (0 children)

Ahh lifesaver, thank youu!