Compose email from within Igor?

I'd love it if there were a way to pre-populate an email from within Igor, the way that there is from the Help>Contact Support... pull-down menu.
That's already possible in Igor 6 and 7. For example:

Function email()
    String msg
    String subject = "This is the subject"
    String body = "This is the body."
    sprintf msg, "mailto:test@example.com?subject=%s&body=%s", subject, body
    BrowseUrl msg
End