Unix shell脚本 - mailsend

时间:2012-10-31 07:15:32

标签: email unix

我正在尝试使用mailsend执行Unix shell脚本来生成电子邮件。我需要使用它的内容类型

将其格式化为HTML文件

我的脚本如下,

sender="xxxx@xxxx.com"
subject="My Subject"
server=000.000.000.000
message=`cat fun.txt`
email_add="test@test.com"
nohup ./mailsend -f $sender -t $email_add -u "$subject" -m "$message" -s $server
  -l fcbulog

如何使用上面的脚本

来实现HTML格式的电子邮件

1 个答案:

答案 0 :(得分:0)

您可以将Content-Type设置为text/html,然后只使用您的html作为邮件正文。