正文中的 sendmail 和 html 格式存在问题

正文中的 sendmail 和 html 格式存在问题

我需要在unix中发送带有2个附件和html格式主题的邮件。

我做了以下操作,它有助于获取附件,但对邮件中的正文内容没有帮助

#!/bin/bash
from="[email protected]"
to="[email protected]"
subject="Status"
boundary="ZZ_/afg6432dfgkl.94531q"
body="mail_body.txt"
attachments=( "FiC.txt" "FiE.txt")

# Build headers
{

printf '%s\n' "From: $from
To: $to
Subject: $subject
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary=\"$boundary\"

--${boundary}
Content-Type: text/plain; charset=\"US-ASCII\"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

cat $body
"

for file in "${attachments[@]}"; do

  [ ! -f "$file" ] && echo "Warning: attachment $file not found, skipping" >&2 && continue

 #mimetype=$(get_mimetype "$file") 

  printf '%s\n' "--${boundary}
Content-Type: text/html
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename=\"$file\"
"

  base64 "$file"
  echo
done

printf '%s\n' "--${boundary}--"

} | /usr/sbin/sendmail -t -oi 

mail_body.txt的内容:

   echo "<html>
        <head>
        <title> Status</title>
        </head>
        "

可以帮助在邮件正文部分打印 html 内容吗?

答案1

printf '%s\n' "...
猫$身体

印刷命令cat。它不是跑步它。

如果您打算\n在格式规范中使用,则最好不要使用带引号的换行符和单个大字符串。

Content-Type: text/plain; charset=\"US-ASCII\"

相当明显,指定的身体部位text/plain不会被解释为text/html。尽管该文件的内容(如给定的)首先不是 HTML。

相关内容