Live data from Hacker News

Show HN: Adios.ai – Stop email interruptions, receive emails 3 times a day

adios.ai

71–73 of 73 posts

Re: Show HN: Adios.ai – Stop email interruptions, receive emails 3 times a day

#71

If anybody wants to do this to their own GMail account without putting trust in a third party, this is pretty easy to do with the little-known Google Apps Script. You can write JavaScript that will run on Google's servers and do whatever you want to your account. (I use this to archive various automated emails if I haven't bothered to look at them, to keep them from cluttering my inbox after they're obsolete.) Here's…

This is awesome. I've been wanting to setup this functionality for a while, but wasn't aware of Apps Script. One thing missing in the above is to remove the 'hidden' label.

  var buffer = GmailApp.getUserLabelByName('buffered');

  function release() {
    buffer.getThreads().map(unbuffer);
  }

  function unbuffer(thread) {
    thread.moveToInbox();
    thread.removeLabel(buffer);
  }

Re: Show HN: Adios.ai – Stop email interruptions, receive emails 3 times a day

#72
post #44

Earlier quoted context omitted.

You could automatically archive the emails with that labeling feature as well, no need for the Google Scripts.

Really, how? I've never seen any options anywhere to apply labels after a certain time. Or is there a trick I missed?

What I understood is to add labels to e-mails and archive the emails that match those labels immediately. That way, you won't get any notification for those emails. Instead, you can open the emails whenever you want. Here it is: https://cl.ly/122f791d609c

Re: Show HN: Adios.ai – Stop email interruptions, receive emails 3 times a day

#73
The privacy policy really needs a strong statement to the tune of "we do not collect any of your email data or metadata, whether raw, anonymized or aggregated", or a detailed explanation of what exactly is being collected/aggregated together with strong guarantees about what the co promises never to collect.
Post reply on HN