kaisellgren/mailer

[iOS 16.4] A strange bug.

Closed this issue · 1 comments

In release build mode, the body content is always empty even though I have set the body(body: 'test string')

But everything works fine in debug build mode.(There are no changes to the code between the debug and release builds.)

Android works fine in both release and debug modes.

May I ask if anyone has encountered a similar problem?(flutter_email_sender has the same problem.)

Hi @cddqssc !

Please try the debug output in your release build.

    Logger.root.level = Level.ALL;
    Logger.root.onRecord.listen((LogRecord rec) {
      print('${rec.level.name}: ${rec.time}: ${rec.message}');
    });