How to attach multiple selected files to Thunderbird (Linux)?
I am using this command for attaching a single file:
command! sendto thunderbird -compose attachment=%d/%c
But I can't figure out how to make use of %d %f or%f:p in a script to attach multiple files.
I tried something inspired by the following link:
(http://xtricks.blogspot.com/2007/06/attach-files-to-thunderbird-directly.html)
Regards
Just pass all files as arguments:
command! sendto attach.sh %f:p
Great, thanks!