Hello,

Is there a way to include a hyperlink inside a string? I am using SMTP to send a verification email, and I would like to inlcude a hyperlink to the website login, as well as a link to the admin email. I was able to get this working, but the entire path show up for the hyperlink, and "mailto:" is including at the beginning of the email link. For formatting purposes I would like this to be setup similar to a standard A HREF hyperlink tag. Here is the code i am working with. Thanks for any help on this!

Code:
    Private Sub SendEmailNotification(ByVal Message As String, ByVal Question As String, ByVal OptionName As String, ByVal Rating As String)

            Dim mailMsg As New MailMessage("[email protected]", "[email protected]")

            With mailMsg
                .Subject = "Moderation Required!"
                .Body = UserInfo.DisplayName & " has modified comments related to """ & Question & """. Please Log into ""MyBold"" to review." & vbCrLf & vbCrLf _
                 & "       User: " & UserInfo.DisplayName & vbCrLf _
                 & "   Question: " & Question & vbCrLf _
                 & "Option Name: " & OptionName & vbCrLf _
                 & "     Rating: " & Rating & vbCrLf _
                 & "    Comment: " & Message & vbCrLf _
                 & "  Date/Time: " & Now() & vbCrLf & vbCrLf _
                 & "Login to http://www.mywebsite.com/bt2/Home/tabid/36/ctl/Login/Default.aspx?returnurl=%2fbt2%2fHome%2ftabid%2f36%2fDefault.aspx to moderate user requests." & vbCrLf _"
                 & "Admin:" & vbCrLf _
                 & "mailto:" & mailMsg.From.Address

            End With

            Try
                Dim emailClient As New SmtpClient("dom-02.boldgroup.int", 25)
                emailClient.Send(mailMsg)
            Catch exp As Exception
                lblUserMessage.Text = exp.ToString()
            End Try

        End Sub