Allows to move all emails from inbox to archives using protonmail-api.
- Clone the repository
git clone https://github.com/beamop/protonmail-archive-all.git
- Install dependencies
npm install- Update ProtonMail creds
// index.js
const pm = await ProtonMail.connect({
username: '<your-email>',
password: '<your-password>'
})- Run it
node index.jsJustin Kalland (protonmail-api)