Google Code Prettify - 輕量級的語法上色工具

星期三, 3月 18, 2020

用 telnet 的 SMTP 指令寄信


# 自己寄給自己可以,但別人無法寄給自己。通常是DNS或防火牆問題。
--------------------------------------------
# 自己寄給自己
telnet xxx.xxx.xxx 25
helo abc.com.tw
# 使用 helo 指令宣告來自abc.com.tw ↑↑↑
mail from:xxx@abc.com.tw
rcpt to:xxx@abc.com.tw
data
# 使用 data 指令說明底下為信件內容 ↑↑↑
subject: test mail from xxx
test mail
greenth
.
# 使用 .  指令寄出 ↑↑↑
--------------------------------------------
# Gmail 寄給自己
telnet xxx.xxx.xxx 25
helo gmail.com
mail from:xxx@gmail.com
rcpt to:xxx@abc.com.tw
data
subject: test mail from xxx
test mail
greenth
.
--------------------------------------------