ユーザーが入力できる連絡フォームを作成しています。ユーザーが[送信]をクリックすると、入力内容が含まれるOutlookが開きます。問題は、出力が本当に乱雑であるということです。次のように出力されます。
name=John+Smith&email=I+am+contacting+you&comment=example+text+here
次のように出力したい:
name=John Smith email=I am contacting you comment=example text here
このHTML5コードでそれは可能ですか?
<form method="post" name="contact" action="mailto:myemail@gmail.com">
<p>
<label>Name</label>
<input name="name" value="Your Name" input type="text" size="50" />
<label>Email</label>
<input name="email" value="Your Email" input type="text" size="50" />
<label>Your Comments</label>
<textarea rows="5" cols="5" name="comment"></textarea>
<br />
<input class="button" input type="submit" />
</p>
</form>