向 thunderbird 添加多个附件(从命令行)
Adding several attachments to thunderbird (from command line)
我尝试通过命令行创建带有多个附件的新邮件,但这不起作用:
thunderbird -compose "attachment='/etc/mtab',attachment='/etc/fstab'"
只附加了第一个文件。第二个不见了。
上面的命令行有什么问题?
PS:我先尝试了xdg-email,但是失败了。参见 How to open the user's preferred mail application on Linux?
命令必须指定为
thunderbird -compose "attachment='/etc/mtab,/etc/fstab'"
我试过 windows.
附加多个文件的另一种方法:
thunderbird.exe -compose to="info@gmail.com" ,subject="SubjectText" ,body="bodytext" ,attachment='D:\File.txt,D:\File2.txt'
我尝试通过命令行创建带有多个附件的新邮件,但这不起作用:
thunderbird -compose "attachment='/etc/mtab',attachment='/etc/fstab'"
只附加了第一个文件。第二个不见了。
上面的命令行有什么问题?
PS:我先尝试了xdg-email,但是失败了。参见 How to open the user's preferred mail application on Linux?
命令必须指定为
thunderbird -compose "attachment='/etc/mtab,/etc/fstab'"
我试过 windows.
附加多个文件的另一种方法:
thunderbird.exe -compose to="info@gmail.com" ,subject="SubjectText" ,body="bodytext" ,attachment='D:\File.txt,D:\File2.txt'