sendmail是一個用于發送郵件的命令行工具,常用于Linux系統。下面是sendmail命令的用法:
echo "This is the body of the email" | sendmail recipient@example.com
這個命令會將文本"This is the body of the email"作為郵件正文發送給recipient@example.com。
echo "This is the body of the email" | sendmail -s "Subject of the email" -f sender@example.com recipient@example.com
這個命令會將文本"This is the body of the email"作為郵件正文發送給recipient@example.com,同時指定郵件主題為"Subject of the email",發件人為sender@example.com。
(echo "This is the body of the email"; uuencode attachment.txt attachment.txt) | sendmail -s "Subject of the email" -f sender@example.com recipient@example.com
這個命令會將文本"This is the body of the email"作為郵件正文發送給recipient@example.com,同時指定郵件主題為"Subject of the email",發件人為sender@example.com,并且附加了名為attachment.txt的附件。
sendmail -t < email.txt
這個命令會從名為email.txt的文件中讀取郵件內容,并發送。
以上是sendmail命令的一些常用用法,你可以根據自己的需求進行調整和擴展。