tmpmail
v1.2.3
直接從您的終端用 POSIX sh 編寫的臨時電子郵件
tmpmail
是一個用 POSIX sh
編寫的命令列實用程序,可讓您建立臨時電子郵件地址並透過該臨時電子郵件地址接收電子郵件。它使用1secmail的API來接收電子郵件。
預設情況下, w3m
用於在終端機上呈現 HTML 電子郵件。但是,如果您喜歡其他基於文字的 Web 瀏覽器,或者更喜歡在 GUI Web 瀏覽器(例如 Firefox)中查看電子郵件,只需使用--browser
參數,後跟啟動您選擇的Web 瀏覽器所需的命令。
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
在 AUR 上可用,目前由 Benjamin Bädorf 維護
$ yay -S tmpmail-git
tmpmail
可在 pacstall-programs 儲存庫中找到,目前由 Wizard-28 維護
$ pacstall -I tmpmail-bin
tmpmail
也可在 nix 軟體包集合中使用(目前僅不穩定),由 legendofmiracles 維護
將其新增至您的系統軟體包中,使用 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
腳本的啟發