Email transport config charset?

hi there,
can’t find any solution for this problem. using kirby 3.22

possible to set the charset to utf-8 in the email transport settings?
or anywhere else? kirby uses phpmailer right? every time i am receiving emails i got this.

This is a multi-part message in MIME format.
--b1_PIf9EH4hPNRaYMm7EII0nWBpDzgVlzkCIFoh6BDXBE
Content-Type: text/plain; charset=us-ascii

for the form handling i’m using uniform.

thank you

Without seeing how you have set the form up, it’s hard to say. You can try setting it on the form tag. See here.

I suspect however, that the page with the form on is it self is not set as utf-8. You might need to tweak your server config.

Put this in your .htaccess if it isnt there already…

AddDefaultCharset utf-8

@jimbobrjames

hi,
these are my server headers

Connection: keep-alive
Content-Encoding: gzip
Content-Type: text/html; charset=UTF-8
Date: Sat, 20 Jul 2019 20:55:50 GMT
Server: nginx
Transfer-Encoding: chunked
Vary: Accept-Encoding

so i don’t think it’s the servers config.
when i use php mailer it’s the same.

but i found something on stackoverflow.com

Yes!!

just have to use extended characters like so

Le problème a été corrigé dans PHPMailer 6

and i get this

This is a multi-part message in MIME format.
--b1_F1SyhoFoyJqxT7uD4sGWTixLT9Qe03FHkVsRJFJRluo
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

you see utf-8

so problem solved.

thank you anyway for your support