Attach files to Thunderbird

Discuss and share scripts and script files...
Post Reply
serendipity
Posts: 3360
Joined: 07 May 2007 18:14
Location: NJ/NY

Attach files to Thunderbird

Post by serendipity »

This little script opens Thunderbird compose window and attaches selected files.

Code: Select all

//Attach to Thunderbird
    $items=chr(39).get("SelectedItemsPathNames",",").chr(39);
    run """C:\Program Files\ThunderbirdPortable\ThunderbirdPortable.exe"" -compose attachment=$items";
Note: this works with Thunderbird 3.0 and later.

PS: for those interested in including subject and body refer to this post:
http://www.xyplorer.com/xyfc/viewtopic. ... 527#p59527

Post Reply