Sample code for 30+ languages & platforms
AutoIt

Create Email with Embedded Link

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

Chilkat AutoIt Downloads

AutoIt
$oEmail = ObjCreate("Chilkat.Email")

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

$oEmail.SetHtmlBody $sHtml

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

Local $sMime
$sMime = $oEmail.GetMime()
ConsoleWrite($sMime & @CRLF)