Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/doug-wade/test-email-cli
a cli application for generating and managing test email addresses
https://github.com/doug-wade/test-email-cli
cli-application email-address testing
Last synced: 17 days ago
JSON representation
a cli application for generating and managing test email addresses
- Host: GitHub
- URL: https://github.com/doug-wade/test-email-cli
- Owner: doug-wade
- Created: 2016-11-17T09:40:59.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2023-07-24T08:44:20.000Z (over 1 year ago)
- Last Synced: 2024-11-27T14:46:32.164Z (about 1 month ago)
- Topics: cli-application, email-address, testing
- Language: JavaScript
- Size: 1.38 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# test-email-cli
test-email-cli is a cli application for generating and managing test email
addresses.## Installation
To install, make sure you have node installed
sudo apt-get install nodejs
Then install test-email-cli globally
npm install -g test-email-cli
Before using it the first time, make sure to initialize the configuration
test-email init
## Use
To generate a new test email address, run `test-email generate`
test-email generate
> [email protected]You may also want to pipe the results to your clipboard directly
with [xclip](https://linux.die.net/man/1/xclip) (on Linux) or
[pbcopy](http://ss64.com/osx/pbcopy.html)test-email generate | xclip
# [email protected] is now on the clipboardYou can search old generated test emails with `test-email find`
test-email find
> [email protected]You can limit searches by `date` and by ticket number, if provided when
generatedtest-email generate
> [email protected]
test-email generate --ticket=1
> [email protected]
test-email find --date=2016-11-17 --ticket=1
> [email protected]To get help, or to get the list of all sub commands, simply run `help`
test-email help
`help` is also used to discover how to use sub commands
test-email help init
> Set up configuration for example. Runs interactive commands to walk you through setting up config.
> Usage:
> test-email init
> # output from test-emailTo update test-email, use update
test-email update
Though if you haven't updated in a while, test-email-cli will remind you 😀
Before you run any commands, you'll need to set up some config by running `init`
test-email init
Then follow the prompts