kaisellgren / mailer

Compose and send emails from Dart. Supports file attachments, HTML emails and multiple transport methods.
MIT License
166 stars 86 forks source link

Reply-To Error #192

Closed mado-bohsali closed 2 years ago

mado-bohsali commented 3 years ago

Error: A value of type 'Set' can't be assigned to a variable of type 'Map<String, dynamic>'.

close2 commented 2 years ago

This sounds like a real bug. But you don't provide enough information. What statement triggers this error?

You can enable debug output with:

  if (args[verboseArg] as bool) {
    Logger.root.level = Level.ALL;
    Logger.root.onRecord.listen((LogRecord rec) {
      print('${rec.level.name}: ${rec.time}: ${rec.message}');
    });
  }
close2 commented 2 years ago

Need more information. Closing for now