https://github.com/sealjay/tasktracker-logicapps
An example using an Angular application and Logic Apps to allow email to be more effectively processed.
https://github.com/sealjay/tasktracker-logicapps
Last synced: 3 months ago
JSON representation
An example using an Angular application and Logic Apps to allow email to be more effectively processed.
- Host: GitHub
- URL: https://github.com/sealjay/tasktracker-logicapps
- Owner: Sealjay
- License: mit
- Created: 2019-03-14T10:18:10.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-09T01:36:07.000Z (over 4 years ago)
- Last Synced: 2025-01-28T04:45:53.838Z (4 months ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tasktracker-logicapps
## Introduction
> This tool downloads emails asynchronously from Office 365 using logic apps, and then allows you to quickly reply, archive, or create a task for reach email. This happens in-line, without context switching. Current desktop and web applications are too slow - this is very minimal
## Background
> I made this tool in May 2018 outside of work hours, during a time where I had a significant amount of emails. The organisation has moved to Microsoft Teams now in a major way, but this still comes in handy.
## Installation
> You need a logic app for responding to emails, and a logic app for downloading emails.
Open config.example.js.
Change `url_actions` and `ùrl_emails` to the urls for your logic apps. Change `email_sig` to your email signature.
Rename config.example.js to config.js.
```
const url_actions = "";
// const for sending actions
const url_emails = "";
// const for getting emails
const email_sig = `Your signature
`;
```