puoi formattare l'email come html:

codice:
emailObject.BodyFormat = MailFormat.Html
e poi generare l'html che ti serve:

codice:
emailObject.Body = "<a href=\""& url &"\" target=\"_blank\">"& name &"</a>"
magari così è un po' più carino, credo che si possafare anche in VB.Net (io uso C# e faccio fatica a ricordarmi il VB...):

codice:
emailObject.Body = String.Format("<a href=\"{0}\" target=\"_blank\">{1}</a>",url,name)
spero ti sia utile.
ciao.