Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 829 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 829 Bytes

Kindlize Email

Read newsletters on your Kindle!

Usage

Note: this is currently only set up to work on mac, but modifying it to work elsewhere should be pretty easy.

  1. download and install calibre (this uses the ebook-convert executable to convert an html file to a mobi file)
  2. run bin/setup
  3. run bin/eml-to-mobi <path to .eml file>
  4. email out.mobi to your Kindle

Apple Script Quick Action

Add this to Automator:

for f in "$@"
do
    cd <path to this repo> && \
    bin/eml-to-mobi "$f" && \
    mv out.mobi "${f}.mobi"
done

Example of clicking the quick action Example of the result of the quick action

Note: if you get errors with ruby versions, try adding bundle exec before the bin/eml-to-mobi call