Sample code for 30+ languages & platforms
Xojo Plugin

Create Email with Embedded Link

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

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim email As New Chilkat.Email

// To create an email with an embedded link, use HTML:
Dim html As String
html = "<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()
System.DebugLog(mime)