diff --git a/CHANGELOG.md b/CHANGELOG.md index 90d51b87..56fb7867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.3.3 +- Add easier method to setup a `MailAccount` with manual settings by calling `MailAccount.fromManualSettings()` + or `MailAccount.fromManualSettingsWithAuth()`. This is useful when settings cannot or should not be auto-discovered, for example. + # 1.3.2 - Fix login for IMAP servers that do not define capabilities in their `AUTH`/`LOGIN` response #159 diff --git a/README.md b/README.md index 2f6143b2..ad19c11a 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,10 @@ Future mailExample() async { print('discovering settings for $email...'); final config = await Discover.discover(email); if (config == null) { + // note that you can also directly create an account when + // you cannot autodiscover the settings: + // Compare [MailAccount.fromManualSettings] and [MailAccount.fromManualSettingsWithAuth] + // methods for details print('Unable to autodiscover settings for $email'); return; } diff --git a/pubspec.yaml b/pubspec.yaml index cd19c22f..1768635a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: enough_mail description: IMAP, POP3 and SMTP for email developers. Choose between a low level and a high level API for mailing. Parse and generate MIME messages. Discover email settings. -version: 1.3.2 +version: 1.3.3 homepage: https://github.com/Enough-Software/enough_mail environment: