Sample code for 30+ languages & platforms
Dart

Create Email with Embedded Link

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

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final email = CkEmail();

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

  final mime = email.getMime();
  print(mime);
}