tmpmail
v1.2.3
POSIX sh로 작성된 터미널에서 바로 임시 이메일을 받을 수 있습니다.
tmpmail
은 POSIX sh
로 작성된 명령줄 유틸리티로, 이를 통해 임시 이메일 주소를 만들고 해당 임시 이메일 주소로 이메일을 받을 수 있습니다. 1secmail의 API를 사용하여 이메일을 수신합니다.
기본적으로 w3m
터미널에서 HTML 이메일을 렌더링하는 데 사용됩니다. 그러나 다른 텍스트 기반 웹 브라우저를 선호하거나 Firefox와 같은 GUI 웹 브라우저에서 이메일을 보려면 --browser
인수를 사용하고 선택한 웹 브라우저를 시작하는 데 필요한 명령을 사용하면 됩니다.
w3m
curl
jq
xclip
# Download the tmpmail file and make it executable
$ curl -L " https://raw.githubusercontent.com/sdushantha/tmpmail/master/tmpmail " > tmpmail && chmod +x tmpmail
# Then move it somewhere in your $PATH. Here is an example:
$ mv tmpmail ~ /bin/
tmpmail
현재 Benjamin Bädorf가 관리하고 있는 AUR에서 사용할 수 있습니다.
$ yay -S tmpmail-git
tmpmail
현재 Wizard-28에 의해 유지 관리되고 있는 pacstall-programs 저장소에서 사용할 수 있습니다.
$ pacstall -I tmpmail-bin
tmpmail
legendofmiracles에서 관리하는 nix 패키지 컬렉션(현재는 불안정함)에서도 사용할 수 있습니다.
시스템 패키지에 추가하거나 nix-env로 설치하거나 임시 nix-shell nix-shell -p tmpmail
에서 사용해 보세요.
요구 사항:
$ docker build -t mail . ; # Dockerfile available in source code
$ docker run -it mail ;
$ tmpmail --help
tmpmail
tmpmail -h | --version
tmpmail -g [ADDRESS]
tmpmail [-t | -b BROWSER] -r | ID
When called with no option and no argument, tmpmail lists the messages in
the inbox and their numeric IDs. When called with one argument, tmpmail
shows the email message with specified ID.
-b, --browser BROWSER
Specify BROWSER that is used to render the HTML of
the email (default: w3m)
--clipboard-cmd COMMAND
Specify the COMMAND to use for copying the email address to your
clipboard (default: xclip -selection c)
-c, --copy
Copy the email address to your clipboard
-d, --domains
Show list of available domains
-g, --generate [ADDRESS]
Generate a new email address, either the specified ADDRESS, or
randomly create one
-h, --help
Show help
-r, --recent
View the most recent email message
-t, --text
View the email as raw text, where all the HTML tags are removed.
Without this option, HTML is used.
--version
Show version
무작위 이메일 만들기
$ tmpmail --generate
[email protected]
맞춤 이메일 만들기
$ tmpmail --generate [email protected]
[email protected]
받은편지함 보기
$ tmpmail
[ Inbox for [email protected] ]
83414443 [email protected] Test Email
이메일 보기
$ tmpmail 83414443
가장 최근 이메일 보기
$ tmpmail -r
이메일을 순수 텍스트로 보기
$ tmpmail -t 83414443
To: [email protected]
From: [email protected]
Subject: Test Email
Hello World
[Attachments]
https://is.gd/aBCdEf [apple.jpg]
https://is.gd/AbCDeF [ball.jpg]
이 스크립트는 Mitch Weaver의 1secmail
스크립트에서 많은 영감을 받았습니다.