Visual Basic 6.0
Visual Basic 6.0
Create Email with Embedded Link
Creating an email with an embedded link (HTML hyperlink).Chilkat Visual Basic 6.0 Downloads
Dim email As New ChilkatEmail
' 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()
Debug.Print mime