Sample code for 30+ languages & platforms
VB.NET

Create Email with Embedded Link

Creating an email with an embedded link (HTML hyperlink).

Chilkat VB.NET Downloads

VB.NET
Dim email As New Chilkat.Email

' To create an email with an embedded link, use HTML:
Dim html As String = "<html><body><p>Click here for more information: <a href=""http://www.chilkatsoft.com/"">Chilkat Software</a></body></html>"

email.SetHtmlBody(html)

' Continue building the email by adding the subject, recipients, etc...


Dim mime As String
mime = email.GetMime()
Debug.WriteLine(mime)