How to send formatted message from Html to Outlook via Form

0

I'm having a little problem, I'm trying to send via Outlook an email from a Send via Form, but when it goes to Outlook it all messes up:   "comment=ção são é é" .

<form action="mailto:[email protected]" method="post" enctype="text/plain">
    Name:<br>
    <input type="text" name="name"><br>
    E-mail:<br>
    <input type="text" name="mail"><br>
    Comment:<br>
    <input type="text" name="comment" size="50"><br><br>
    <input type="submit" value="Send">
    <input type="reset" value="Reset">
</form>   

Is there any way for it to be sent and the body text of the email be formatted?

    
asked by anonymous 17.09.2018 / 21:56

1 answer

0

This is a charset problem.

try adding this to the header:

<meta charset="utf-8">
    
17.09.2018 / 22:25