I'm trying to create a mailto hyperlink to send an email with the body being the selected items from a listbox, all on a seperate line. I have it working to where it will add the selected items but to seperate email panes.

Here is the code I have so far:

Code:
        Dim i As Integer
        i = ListBox1.SelectedItems.Count - 1
        Do While i >= 0
            System.Diagnostics.Process.Start("mailto:" & "[email protected]" & "?Subject=Subject of the email" & "&Body=" & ListBox1.SelectedItems.Item(i))
            i = i - 1
        Loop
        ListBox1.SelectedIndex = -1
I'm sure it is probably something to do with the loop, but I'm not sure how to change it. I'm very much a beginner with .NET but have an intermediate level with basic VB6 operations. Loops and arrays are not my strong point yet so any help you can give would be greatly appreciated!

Thanks!