Originally posted by azzyt

on (release) {
fscommand ("exec", "ftoolap.exe" add chr (9) add "mailto:[email protected]?subject=" add escape(subject) add "&body=" add escape(message);
}


That should work, but I haven't tried it
See, I should have tested it first. That doesnt work, but this does:

on (release) {
subject = "lalala";
message = "whwhowhwo";
fscommand ("exec", "ftoolapp.exe" add chr(9) add "mailto:[email protected]?subject=" add escape(subject) add "&body=" add escape(message));
}



Substitute subject and message for your own, of course.