任何人都可以帮忙解决这个问题,
当我使用命令
时,我收到的主题是电子邮件mail -s "subject" emailid < content.txt
这个命令有什么问题吗?
答案 0 :(得分:2)
试试这个
[root@host ~ ]# mail -s "test" me@gmail.com
This will be in the body of the email
Cc: me_cc@gmail.com
.
[root@host ~ ]#
.
在其自己的行上告诉mail命令您已完成编写电子邮件正文并充当该命令的EOF
。
另一种方式
[root@host ~ ]# echo "This will be the body of the email" | mail -s "This is the subject" me@gmail.com
希望它有效。适用于我的机器。请确保sendmail应用程序已安装并正常运行。
EDIT
for Sun OS试试这个
echo "Hello World" | mailx -s "Hello World Test" emailaddress.com
答案 1 :(得分:1)
使用mailx
而不是mail
因为我猜您正在使用sun os。