- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是 Bash 脚本的新手,正在尝试修改我从网上获取的一些代码。基本上,我试图将多个文件附加到同一封电子邮件。
#!/bin/bash
function get_mimetype(){
file --mime-type "$1" | sed 's/.*: //'
}
declare -a attachments
attachments=("A_PTDIFF.CVS" "A_PTMISS.CVS" "A_PTNPOS.CVS" "A_PTRCON.CVS"
)
# Build headers
{
printf '%s\n'"From: jrpng
To: tom@gmail.com
Subject: Test new Bash script
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
The reports are attached to this email as requested
"
for file in "${attachments[@]}"; do
[ ! -f "$file" ] && echo "Attachment $file not found, omitting file"
>&2 && continue
mimetype=$(get_mimetype "$file")
printf '%s\n' "--${=== Boundary ===}
Content-Type: $mimetype
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename=\"$file\"
"
base64 "$file"
echo
done
# print last boundary with closing --
printf '%s\n' "--${=== Boundary ===}--"
} | /usr/lib/sendmail -t -oi
好的,当通过 bash sendmail54.sh 运行时,我得到以下信息
sendmail54.sh: line 22: From: jrpng
To: tom@gmail.com
Subject: Test new Bash script
`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
The reports are attached to this email as requested
: bad substitution
No recipient addresses found in header
不知道错误消息告诉我什么?
如果有更好的方法来实现我想要实现的目标,我非常乐意尝试,正如 bash 脚本的新手所说,所以我在黑暗中摸索着试图让它工作。
最佳答案
你有一些基本的语法错误和误解。
显然原始代码有一个变量 boundary="randomstring"
,然后用 --${boundary}
在正确的位置插入它。但是您试图在 ${...}
中使用边界字符串本身,这简直是无稽之谈——大括号之间的是变量的名称。
此外,您的邮件消息需要一些空行才能有效。总体结构是
From: whoever
To: wherever
Subject: whatever
Mime-version: 1.0
Content-type: multipart something something; boundary="randomstring"
<- empty line between message headers and first body part
--randomstring
Content-type: of first attachment
x-headers: and etc
<- empty line before here; now the actual attachment data
--randomstring
Content-type: of second attachment
x-headers: and etc
payload of second attachment goes here, again after an empty line
--randomstring--
手动拼凑一封电子邮件需要您了解 MIME,而大多数人根本不想了解。如果您安装了像 mutt
这样的智能邮件程序,则无需了解如何正确格式化 SMTP MIME 消息的详细信息。
无论如何,这是修复当前代码的尝试,包括注释和适当的缩进。
function get_mimetype(){
file --mime-type "$1" | sed 's/.*: //'
}
declare -a attachments
attachments=("A_PTDIFF.CVS" "A_PTMISS.CVS" "A_PTNPOS.CVS" "A_PTRCON.CVS")
{
boundary="--random$$string--"
# You were missing a space after '%s\n'
# Also, I'm breaking this into multiple arguments for legibility
printf '%s\n' \
"From: jrpng" \
"To: tom@gmail.com" \
"Subject: Test new Bash script" \
"Mime-Version: 1.0" \
"Content-Type: multipart/mixed; boundary=\"$boundary\"" \
"X-Comment: # notice the empty line after this one" \
"" \
"--${boundary}" \
"Content-Type: text/plain; charset=\"US-ASCII\"" \
"Content-Transfer-Encoding: 7bit" \
"Content-Disposition: inline" \
"X-Comment: # these headers are all superfluous really" \
"X-Comment: # (default is text/plain us-ascii 7bit inline)" \
"X-Comment: # but the next empty line is important" \
"" \
"The reports are attached to this email as requested" \
""
for file in "${attachments[@]}"; do
[ ! -f "$file" ] &&
echo "Attachment $file not found, omitting file" >&2 &&
continue
mimetype=$(get_mimetype "$file")
printf '%s\n' \
"--${boundary}" \
"Content-Type: $mimetype" \
"Content-Transfer-Encoding: base64" \
"Content-Disposition: attachment; filename=\"$file\"" \
""
base64 "$file"
echo
done
printf '%s\n' "--${boundary}--"
} | /usr/lib/sendmail -t -oi
关于linux - 发送多个 csv 附件,简单的 Bash 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47899572/
我没有上传附件以使浏览器正常工作。 一些提示是 here , 其他 there . The docs非常好,但我无法将其转换为 AJAX 上传。 我正在寻找一个 super 简单的 HTML/Java
我有一个应用程序可以收集一些信息并允许用户使用 Android 的 Intent 框架共享这些信息。 到目前为止,它以纯文本形式共享报告:使用 putExtra(Intent.EXTRA_TEXT,
我正在尝试通过我的应用程序发布带有附件图片的消息,所以我使用了以下代码: function yamPost(mytoken) { var msg_Body = jQuery("#myB
我在用户表中使用了多对多关系来使登录用户关注另一个用户,但我自己没有弄清楚,我检查了其他人做了什么,并尝试做类似的事情,并且它有效。在我的方法中,我有: function follow(User $u
我正在用 PHP 创建脚本,其作用是将 IMAP 服务器备份到 MySQL 数据库。 我现在的问题是: 如果电子邮件有附件,附件是嵌入在电子邮件本身中还是服务器上的一个单独文件? 我问的原因是: 我可
我正在使用 RavenDB,在我处理任何附件之前删除了一些带有附件的测试文档,所以我在想它们是否还在磁盘上的某个地方,以及如何轻松地找到它们?。 另一个问题是:当文档被删除时,它有一个附件,附件会被自
当您使用 ACTION_SEND Intent (使用额外的 EXTRA_STREAM)将文件附加到电子邮件时,电子邮件应用程序是否将该附加文件复制到它自己的位置?我的应用程序创建了一个文件并将其附加
所以: // Setup mail class, recipients and body $mailer->AddAttachment('/home/mywebsite/public_html/fil
您好,我需要一个 DnD 解决方案来将 Outlook 邮件附件拖到 Stackpane。 JavaFX/展望 2010 stackpaneDragAndDropZone.setOnDragO
我尝试制作一个 PhpSpreadsheet 文档,然后将他添加到邮件附件中。也许是太热了,但在 phpSpreadsheet 文档中几个小时后,我还没有找到任何东西。 这是我发送邮件的文件 $nam
有什么方法可以动画删除 UITableView 单元格附件吗? 我当前正在显示一个 UITableViewCellAccessoryDisclosureIndicator,但我想在所有可见表格单元格上
我正在编写一个 iPhone 应用程序,它要求我以编程方式发送电子邮件附件。附件是我通过代码创建的 csv 文件。然后,我将文件附加到电子邮件中,附件就会显示在手机上。但是,当我向自己发送电子邮件时,
我正在尝试通过收件箱中的名称“MacroEnabled”访问子文件夹,找到其中的所有附件并将它们保存到本地驱动器。 我使用此代码创建一个名为“Documents”的文件夹并保存附件。然而,在进行第二次
将 corda 升级到版本 4 后,我收到 net.corda.core.transactions.MissingContractAttachments:找不到 com.template.contra
我正在尝试让 Jenkins 将一个或一组文件附加到作业已完成的电子邮件通知中。我不断收到以下错误: 发送电子邮件以触发:成功错误:访问要附加的文件时出错:需要 Ant GLOB 模式,但看到 C:\
我创建了一个由来自 mysql 的数据填充的 UITableView(使用 NSJSONSERIALIZATION)。现在问题是一回事。我检索到的是产品名称。我想要一个附件 View (像单元格右侧的
我开发了一个 Java 客户端应用程序,用于下载我自己的电子邮件。我发现我无法在电子邮件中找到某些附件,特别是当我向经过认证的公司发送电子邮件时收到的作为收据的 XML 文件。我用于下载附件的代码:
我正在将我的 sqlite 数据库转换为 Couchdb。我可以转换数据库并上传到 Couchdb 服务器。除了图像之外的一切。我想将图像作为独立附件上传,我想使用 javascript、REST 和
我编写了一段代码,以便能够启动默认的电子邮件服务提供商,即我的 Outlook。这是我的代码: if(role.getValue().equals("1")) { Desktop desktop =
我正在尝试使用链接上共享的代码使用 python 从 Gmail 下载电子邮件附件 https://gist.github.com/baali/2633554 我想应用时间过滤器+主题过滤器并下载附件
我是一名优秀的程序员,十分优秀!