Oct 7
from_name Character Transmission Problem
Hi!
Maybe a bit insignificant but it is a bug though. I receive the `from_name` value with missing turkish characters. See the attached screenshot from my email inbox. I marked the corrupt words with blue lines.
Here is what I send from 2 discrete forms:
**contact_form**
```html
<form method="post" id="form" class="max-w-md mx-auto">
<input type="hidden" name="access_key" value="ACCESS_KEY_VALUE">
<input type="hidden" name="from_name" value="İletişim Formu">
<input type="hidden" name="subject" value="Yeni İletişim Formu">
<input type="checkbox" name="botcheck" id="" style="display: none;">
<!-- Here go form elements -->
</form>
```
**quote_form**
```html
<form method="post" id="form">
<input type="hidden" name="access_key" value="ACCESS_KEY_VALUE">
<input type="hidden" name="subject" value="Yeni Teklif Formu İsteği">
<input type="hidden" name="from_name" value="Teklif İstek Formu">
<input type="checkbox" name="botcheck" id="" style="display: none;">
<!-- Here go form elements -->
</form>
```
As you will see, the `subject` value is sent as is. But in the `form_name` value all non-english characters are omitted.
Now I'm asking to myself whether this is an intended behaviour or a bug?
Completed
thanks. its been fixed