表单提交mailto

时间:2013-08-08 13:50:50

标签: javascript html html5 forms html-email

我有点问题, 我已经开发了iphone的html,css,javascript应用程序,我有一个提交邮件的表单:

<form action="mailto:some email" method="post" enctype="text/plain">
name:
phone:
email:
comments:
</form>

当我点击发送时,iphone电子邮件应用程序打开所有细节,但所有细节转换为乱码(所有文本都是希伯来语)。 如何在希伯来语中管理细节,而不是在iphone电子邮件应用程序中转换为乱码?

2 个答案:

答案 0 :(得分:1)

mailto:表单中的URI为too unreliable to use on the WWW。请改用HTTP URL并从服务器发送电子邮件。

答案 1 :(得分:-1)

在表单声明中使用UTF-8编码类型:

enctype="multipart/form-data;charset=UTF-8"