You are using the wrong syntax for a Thunderbird command line. I'm surprised it generated 53 since the file was found, but you are probably get an error back from the command line. It should be in the form of
thunderbird.exe -compose "to='john@example.com,kathy@example.com',cc='britney@example.com',subject='dinner',body='How about dinner tonight?',attachment='C:\temp\info.doc,C:\temp\food.doc'"
so your code should be
Your code is trying to build an HTML mailto: tag, which is a different animal. I'll explain that as long as I'm here.
? - a series of command parameters follow
& - another command parameter follows
parameters are in the form of
parameter_name=parameter_value
You can see an example of this name/value pair syntax in URLs for PHP web sites, like the page you are looking at right now:
http://www.excelforum.com/showthread.php?t=1137140&p=4374947
Bookmarks