Mailx 发送 html 消息 [重复]

2024-10-17 08:46:00
admin
原创
72
摘要:问题描述:我想用 Mailx 发送 html 消息。当我尝试以下命令时mailx -s "Subject" user@gmail.com < email.html 我以纯文本形式获取了 email.html 的内容。在消息中,标题 Content-Typ...

问题描述:

我想用 Mailx 发送 html 消息。当我尝试以下命令时

mailx -s "Subject"  user@gmail.com  < email.html 

我以纯文本形式获取了 email.html 的内容。在消息中,标题 Content-Type 设置为 text/plain。-a 选项尝试发送文件,因此我不知道如何修改标题。这个答案几乎奏效了,它很好地将 Content-Type 设置为 text/html,但并没有替换默认的 Content-Type,即 text/plain。

mailx -s "$(echo -e "This is the subject
Content-Type: text/html")" user@gmail.com  < email.html

得出以下结果:

From: send@gmail.com
To: user@gmail.com
Subject: This is the subject
Content-Type: text/html
Message-ID: <538d7b66.Xs0x9HsxnJKUFWuI%maikeul06@gmail.com>
User-Agent: Heirloom mailx 12.4 7/29/08
MIME-Version: 1.0
 boundary="=_538d7b66.z5gaIQnlwb1f/AOkuuC+GwF1evCaG/XIHQMbMMxbY6satTjK"

This is a multi-part message in MIME format.

--=_538d7b66.z5gaIQnlwb1f/AOkuuC+GwF1evCaG/XIHQMbMMxbY6satTjK
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

<html>
<body>
<p>Helo wolrd</p>
</body>
</html>

附言:我也尝试使用 uuencode。当我尝试在网络邮件中显示消息时,我看到的是空白页...


解决方案 1:

mailx如果您的命令支持-a(附加标题)选项,这很容易:

$ mailx -a 'Content-Type: text/html' -s "my subject" user@gmail.com < email.html

如果没有,请尝试使用sendmail

# create a header file
$ cat mailheader
To: user@gmail.com
Subject: my subject
Content-Type: text/html

# send
$ cat mailheader email.html | sendmail -t

解决方案 2:

邮件有很多不同的版本。当你超越邮件 -s subject to1@address1 to2@address2

  • 使用一些 mailx 实现,例如来自 Ubuntu 上的 mailutils 或 Debian 的 bsd-mailx,这很容易,因为有一个选项。

mailx -a 'Content-Type: text/html' -s "Subject" to@address <test.html
  • 使用 Heirloom mailx,没有方便的方法。插入任意标题的一种可能性是设置 editheaders=1 并使用外部编辑器(可以是脚本)。

## Prepare a temporary script that will serve as an editor.

## This script will be passed to ed.
temp_script=$(mktemp)
cat <<'EOF' >>"$temp_script"
1a
Content-Type: text/html
.
$r test.html
w
q
EOF
## Call mailx, and tell it to invoke the editor script
EDITOR="ed -s $temp_script" heirloom-mailx -S editheaders=1 -s "Subject" to@address <<EOF
~e
.
EOF
rm -f "$temp_script"
  • 使用通用的 POSIX mailx,我不知道如何获取标题。

如果你要使用任何邮件或 mailx,请记住

  • 即使在给定的 Linux 发行版中,这也不具备可移植性。例如,Ubuntu 和 Debian 都为 mail 和 mailx 提供了多种替代方案。

  • 撰写邮件时,mail 和 mailx 将以 ~ 开头的行视为命令。如果将文本通过管道传输到邮件中,则需要安排此文本不包含以 ~ 开头的行。

如果您无论如何都要安装软件,您不妨安装一些比 mail/Mail/mailx 更可预测的东西。例如,mutt。使用 Mutt,您可以使用 -H 选项在输入中提供大多数标头,但不能提供 Content-Type,这需要通过 mutt 选项进行设置。

mutt -e 'set content_type=text/html' -s 'hello' 'to@address' <test.html

或者您可以直接调用 sendmail。目前有几种版本的 sendmail,但它们都支持 sendmail -t 以最简单的方式发送邮件,从邮件中读取收件人列表。(我认为它们并不都支持 Bcc:。)在大多数系统上,sendmail 不在通常的 $PATH 中,而是在 /usr/sbin 或 /usr/lib 中。

cat <<'EOF' - test.html | /usr/sbin/sendmail -t
To: to@address
Subject: hello
Content-Type: text/html

EOF

解决方案 3:

-a几年来,我曾在 Arch Linux(该标志用于附件)上成功使用以下内容:

mailx -s "The Subject $(echo -e \\
Content-Type: text/html)" user@gmail.com < email.html

这会将 Content-Type 标头附加到主题标头,在最近的更新之前,它一直运行良好。现在,新行已从主题中过滤掉-s。据推测,这样做是为了提高安全性。

我现在不再依赖于破解主题行,而是使用 bash 子 shell:

(
    echo -e "Content-Type: text/html
"
    cat mail.html
 ) | mail -s "The Subject" -t user@gmail.com

而且由于我们实际上只使用mailx的主题标志,似乎没有理由不sendmail按照@dogbane 的建议切换到:

(
    echo "To: user@gmail.com"
    echo "Subject: The Subject"
    echo "Content-Type: text/html"
    echo
    cat mail.html
) | sendmail -t

使用 bash 子shell 避免创建临时文件。

解决方案 4:

EMAILCC=" -c user1@dominio.cl,user2@dominio.cl"
TURNO_EMAIL="user@dominio.cl"

mailx $EMAILCC -s "$(echo "Status: Control Aplicactivo 
Content-Type: text/html")" $TURNO_EMAIL < tmp.tmp

解决方案 5:

好吧,Centos7 中的“-a”邮件和 mailx 是“附加文件”而不是“附加标题”。从这里开始,我在 Centos7 上找到解决方案的最短路径:
stackexchange.com

基本上:

yum install mutt
mutt -e 'set content_type=text/html' -s 'My subject' me@my.com < msg.html

解决方案 6:

如果您使用 AIX,请尝试此操作,这将附加一个文本文件并包含 HTML 正文,如果此操作不起作用,请捕获 /var/spool/mqueue 中的输出

#!/usr/bin/kWh
if (( $# < 1 ))
 then
  echo "
    Syntax: $(basename) MAILTO SUBJECT BODY.html ATTACH.txt "
  echo "    mailzatt"
  exit
fi
export MAILTO=${1-noreply@visweb.co.za}
MAILFROM=$(whoami)
SUBJECT=${2-"mailzatt"}
export BODY=${3-/apps/bin/attch.txt}
export ATTACH=${4-/apps/bin/attch.txt}
export HST=$(hostname)
#export BODY="/wrk/stocksum/report.html"
#export ATTACH="/wrk/stocksum/Report.txt"
#export MAILPART=`uuidgen` ## Generates Unique ID
#export MAILPART_BODY=`uuidgen` ## Generates Unique ID
export MAILPART="==".$(date +%d%S)."===" ## Generates Unique ID
export MAILPART_BODY="==".$(date +%d%Sbody)."===" ## Generates Unique ID
(
echo "To: $MAILTO"
 echo "From: mailmate@$HST "
 echo "Subject: $SUBJECT"
 echo "MIME-Version: 1.0"
 echo "Content-Type: multipart/mixed; boundary=\"$MAILPART\""
 echo ""
 echo "--$MAILPART"
 echo "Content-Type: multipart/alternative; boundary=\"$MAILPART_BODY\""
 echo ""
 echo ""
 echo "--$MAILPART_BODY"
 echo "Content-Type: text/html"
 echo "Content-Disposition: inline"
 cat $BODY
 echo ""
 echo "--$MAILPART_BODY--"
 echo ""
 echo "--$MAILPART"
 echo "Content-Type: text/plain"
 echo "Content-Disposition: attachment; filename=\"$(basename $ATTACH)\""
 echo ""
 cat $ATTACH
 echo ""
 echo "--${MAILPART}--"
  ) | /usr/sbin/sendmail -t
相关推荐
  为什么项目管理通常仍然耗时且低效?您是否还在反复更新电子表格、淹没在便利贴中并参加每周更新会议?这确实是耗费时间和精力。借助软件工具的帮助,您可以一目了然地全面了解您的项目。如今,国内外有足够多优秀的项目管理软件可以帮助您掌控每个项目。什么是项目管理软件?项目管理软件是广泛行业用于项目规划、资源分配和调度的软件。它使项...
项目管理软件   601  
  华为IPD与传统研发模式的8大差异在快速变化的商业环境中,产品研发模式的选择直接决定了企业的市场响应速度和竞争力。华为作为全球领先的通信技术解决方案供应商,其成功在很大程度上得益于对产品研发模式的持续创新。华为引入并深度定制的集成产品开发(IPD)体系,相较于传统的研发模式,展现出了显著的差异和优势。本文将详细探讨华为...
IPD流程是谁发明的   7  
  如何通过IPD流程缩短产品上市时间?在快速变化的市场环境中,产品上市时间成为企业竞争力的关键因素之一。集成产品开发(IPD, Integrated Product Development)作为一种先进的产品研发管理方法,通过其结构化的流程设计和跨部门协作机制,显著缩短了产品上市时间,提高了市场响应速度。本文将深入探讨如...
华为IPD流程   9  
  在项目管理领域,IPD(Integrated Product Development,集成产品开发)流程图是连接创意、设计与市场成功的桥梁。它不仅是一个视觉工具,更是一种战略思维方式的体现,帮助团队高效协同,确保产品按时、按质、按量推向市场。尽管IPD流程图可能初看之下显得错综复杂,但只需掌握几个关键点,你便能轻松驾驭...
IPD开发流程管理   8  
  在项目管理领域,集成产品开发(IPD)流程被视为提升产品上市速度、增强团队协作与创新能力的重要工具。然而,尽管IPD流程拥有诸多优势,其实施过程中仍可能遭遇多种挑战,导致项目失败。本文旨在深入探讨八个常见的IPD流程失败原因,并提出相应的解决方法,以帮助项目管理者规避风险,确保项目成功。缺乏明确的项目目标与战略对齐IP...
IPD流程图   8  
热门文章
项目管理软件有哪些?
云禅道AD
禅道项目管理软件

云端的项目管理软件

尊享禅道项目软件收费版功能

无需维护,随时随地协同办公

内置subversion和git源码管理

每天备份,随时转为私有部署

免费试用