https://github.com/motdotla/disposable-email
Your own personal and hostable mailinator - using SendGrid's Inbound Webhook and Requestb.in
https://github.com/motdotla/disposable-email
Last synced: 4 months ago
JSON representation
Your own personal and hostable mailinator - using SendGrid's Inbound Webhook and Requestb.in
- Host: GitHub
- URL: https://github.com/motdotla/disposable-email
- Owner: motdotla
- Created: 2014-04-16T18:04:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-24T03:26:03.000Z (over 11 years ago)
- Last Synced: 2025-04-04T03:24:14.453Z (7 months ago)
- Language: Go
- Homepage:
- Size: 4.38 MB
- Stars: 40
- Watchers: 4
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# disposable-email
Create and host your own disposable email account. Great for preventing SPAM when you signup for questionable websites. Inspiration from the very excellent [mailinator](http://mailinator.com/).
Try the [demo](http://disposable-email.herokuapp.com/).

## About
Dispoable Email uses [SendGrid's Inbound Parse Webhook](http://sendgrid.com/docs/API_Reference/Webhooks/parse.html) & [Runscope's RequestBin](http://requestb.in) to quickly standup your own personal disposable email.
It's easy to setup and use. You just need [Go](http://golang.org).
## Usage
```
git clone https://github.com/scottmotte/disposable-email.git
cd disposable-email
go get
go run app.go
```Visit [http://localhost:3000](http://localhost:3000)
That's it. You're done!
## Deploy to Heroku
```
git clone https://github.com/scottmotte/disposable-email.git
cd disposable-email
heroku create -b https://github.com/kr/heroku-buildpack-go.git
git push heroku master
heroku open
```That's it. You're done!