邮件在linux中没有主题发送

时间:2012-06-26 05:56:41

标签: linux sendmail

任何人都可以帮忙解决这个问题,

当我使用命令

时,我收到的主题是电子邮件
mail -s "subject" emailid < content.txt

这个命令有什么问题吗?

2 个答案:

答案 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。