我使用下面的代码在unix中使用ksh脚本发送邮件
echo "Hi. here is my message body" | mail -s "test mail ksh" "abc@xyz.com,efg@xyz.com"
但我一直收到以下错误
mail: illegal option -- s
usage: mail [+] [-epqr] [-f file]
mail [-dt] persons
请帮助使用正确的格式。
答案 0 :(得分:0)
某些mail
(1)实施没有-s subject
选项。如果可用,请使用mailx
(1)。或者使用sendmail
(1)或其他具有合适选项和输入的邮件程序。