The directory was tracked as a mode-160000 gitlink (bare submodule reference) without a .gitmodules entry, causing 'has no commit checked out' errors on commit. Re-added as ordinary tracked files so the vendored copy is fully part of this repo. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
543 B
Dart
19 lines
543 B
Dart
/// With enough_mail you can connect to any mail service via IMAP, POP3 and SMTP
|
|
///
|
|
/// You can choose between a high-level API starting with `MailClient` and the
|
|
/// low-level APIs `ImapClient`, `PopClient` and `SmtpClient`.
|
|
///
|
|
/// Generate a new `MimeMessage` with `MessageBuilder`.
|
|
///
|
|
/// Discover connection settings with `Discover`.
|
|
library enough_mail;
|
|
|
|
export 'codecs.dart';
|
|
export 'discover.dart';
|
|
export 'highlevel.dart';
|
|
export 'imap.dart';
|
|
export 'mime.dart';
|
|
export 'pop.dart';
|
|
export 'smtp.dart';
|
|
export 'src/exception.dart';
|