This is an add-in for Outlook 365 that provides a traditional style inline reply. Currently, it supports Outlook Desktop and Outlook Web.
To run this add-in on your own machine, take the following steps.
-
Make sure you satisfy the prerequisites and clone this repository.
- Node.js
-
Start the local server.
npm start
-
Sideload the add-in to your Outlook.
-
Try inline replying.
-
Randomly select an email you received and click on reply.
-
In the compose window, click the three dots to expand the email history.
-
Find the add-in Inline Reply in the menu and click on "Reformat Email."
-
You should see that there is a vertical blockquote bar before the email history.
-
This is useful for production and developing on Linux
-
Build the container.
docker build . --tag <name:tag>
-
Start the container while binding the ports.
docker run -p 3000:3000 -e "WEBSITE_HOSTNAME=<hostname>" <name:tag>
where
<hostname>
is your host name (defaults tolocalhost
)Cloud container apps, like the Azure Web App for Containers, may automatically detect the port (
3000
) and set theWEBSITE_HOSTNAME
environment variable so this container can be successfully started without specifying the-p
and-e
arguments.