Home

Awesome

<h1 align="center"><a href="https://remailable.getneutrality.org/">ReMailable</a></h1> <p align="center">email documents to your <a href="https://remarkable.com">ReMarkable</a> tablet</p> <p align="center"> <img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/j6k4m8/remailable?style=for-the-badge" /> <img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/j6k4m8/remailable?style=for-the-badge" /> <img alt="This repo is pretty dope" src="https://img.shields.io/badge/pretty%20dope-%F0%9F%91%8C-blue?style=for-the-badge" /> <img alt="This repo is licensed under Apache 2.0" src="https://img.shields.io/github/license/j6k4m8/remailable?style=for-the-badge" /> </p>

You can use this by emailing a PDF to remailable@[your-custom-domain]. Read on for instructions.

Using <a href="https://remailable.getneutrality.org/">the public instance of remailable</a> for free

I host a version of this that you can use for free. Emails are not kept and do not go to a real mailbox. (Email binaries are deleted after 24 hours automatically.)

If you would like to make a donation to keep this service alive, please feel free to donate via paypal.

Setup

Write a new email to remailable@getneutrality.org with nothing in the body and your new-device ReMarkable code in the subject line.

Usage

Email remailable@getneutrality.org with a PDF attachment. It will be delivered to your ReMarkable tablet.

Limitations

Issues?

If you encounter issues, please feel free to reach out. @j6m8 on reddit, submit an issue here, or shoot me an email.

To delete your account, send a message with the subject line "Unsubscribe". Your account will be deleted and you will not receive any more emails from Remailable.

Making Your Own

I'm trying to migrate as much of this as possible to automation/scripts. Unfortunately, much of this must be done through the AWS UI console, and because there's a human in the loop, it can take a few days!

To Set Up Before You Start

class Config:
    AWS_REGION = "us-east-1"

    BUCKET_NAME = "[YOUR BUCKET NAME]"
    BUCKET_PREFIX = "attachments" # optional; based upon your S3 rule above

    # The email-sender that you verified above. Leave as empty string
    # if Config.SEND_EMAILS is False.
    EMAIL_SENDER = "Remailable <YOUR_USER@DOMAIN.com>"

    # Set to False if you won't be sending receipt emails:
    SEND_EMAILS = True

To Set Up While You Start

zappa init

You'll need to configure your Zappa file to look like the following:

{
    "production": {
        "app_function": "lambda_main.APP",
        "aws_region": "us-east-1",
        "project_name": "remailable", // call this something cute :)
        "runtime": "python3.7",
        "s3_bucket": [NEW BUCKET NAME] // different bucket name than above
        "events": [
            {
                "function": "lambda_main.upload_handler",
                "event_source": {
                    "arn": "arn:aws:s3:::[Config.BUCKET_NAME GOES HERE]",
                    "events": ["s3:ObjectCreated:*"]
                }
            }
        ]
    }
}

Why?

I love emailing documents to my Kindle. It's a very natural way of sharing a PDF for many people, and in my opinion it's a huge shortcoming of the ReMarkable ecosystem. So now it's fixed :)

You May Also Like...