Sample code for 30+ languages & platforms
.NET Core C#

Create Email with Embedded Link

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

Chilkat .NET Core C# Downloads

.NET Core C#
Chilkat.Email email = new Chilkat.Email();

// To create an email with an embedded link, use HTML:
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...

string mime;
mime = email.GetMime();
Debug.WriteLine(mime);