enough_mail icon indicating copy to clipboard operation
enough_mail copied to clipboard

Attachment file with Chinese file name, how to support chinese file name

Open function2000 opened this issue 3 months ago • 3 comments

I try to use send email with attachment, the file name is Chinese, for example 销售报告.pdf, But when send out, it is as 销售报告.pdf . Any idea to suppoer Chinese file name?

My code is as below:

for (final path in files) {
        final file = File(path);

        final mediaType = MediaType.guessFromFileExtension(file.path);

        await builder.addFile(file, mediaType);

      }

Thanks a lot!

function2000 avatar Sep 19 '25 06:09 function2000