如何使用 wanderlust 从 emacs 将 .gz 文件作为附件发送?

如何使用 wanderlust 从 emacs 将 .gz 文件作为附件发送?

我已经找到了通过 wanderlust 发送附件M-x mime-insert-encoded-file并回答一些问题的方法。这很有效。但我如何才能将.gz压缩文件作为附件发送呢?

M-x mime-insert-encoded-file在邮件中插入一些神秘的字符串,但用 Thunderbird 打开时,文本在邮件正文中,但没有附件。

答案1

尝试M-x mime-edit-insert-file

这应该会产生类似下面的结果:

--[[application/octet-stream; type=gzip; name="...gz"
Content-Disposition: attachment; filename="...gz"][base64]]

然后,当你点击时,C-c C-c你应该看到你的附件“像往常一样”

相关内容