Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gadenbuie/msglooker
A Shiny App to View And Export Outlook Messages
https://github.com/gadenbuie/msglooker
email outlook rstats shiny shiny-app
Last synced: 7 days ago
JSON representation
A Shiny App to View And Export Outlook Messages
- Host: GitHub
- URL: https://github.com/gadenbuie/msglooker
- Owner: gadenbuie
- License: other
- Created: 2019-10-30T20:17:06.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-29T03:59:57.000Z (about 3 years ago)
- Last Synced: 2024-10-14T22:29:25.316Z (20 days ago)
- Topics: email, outlook, rstats, shiny, shiny-app
- Language: R
- Size: 11.7 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - gadenbuie/msglooker - A Shiny App to View And Export Outlook Messages (R)
README
# msglooker
A small Shiny app to break an Outlook message out of its proprietary format and into an HTML document.
![](https://i.imgur.com/3G5qxpJ.gif)
## Installation
You can install the released version of msglooker from GitHub.
``` r
# install.packages("devtools")
devtools::install_github("gadenbuie/msglooker")
```## How To Use
``` r
library(msglooker)## Run the Shiny app
msg_look_app()## Or convert a .msg into an .html
msg2html("email.msg", "email.html")
```***
## Thanks
Built using the [msgxtractor](https://github.com/hrbrmstr/msgxtractr) package by Bob Rudis and the [base64enc](https://cran.r-project.org/web/packages/base64enc/) package by Simon Urbanek.