Sample code for 30+ languages & platforms
Tcl

Create Email with Embedded Link

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

Chilkat Tcl Downloads

Tcl

load ./chilkat.dll

set email [new_CkEmail]

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

CkEmail_SetHtmlBody $email $html

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

set mime [CkEmail_getMime $email]
puts "$mime"

delete_CkEmail $email