我在表单上使用 mailto 打开默认电子邮件服务并创建电子邮件。但是,当表单上的所有字段出现在电子邮件中时,它们看起来都很糟糕。我有三个字段名词1,动词,名词2,当它们被提交时,在电子邮件的正文中它显示为,例如
noun1= I
verb= ate
noun2= food
是否有某种方法可以指定单击提交时如何在电子邮件正文上组织/显示这些变量,以便在电子邮件正文上将其格式化为
I ate food
?
表格,应要求:
<form id= "formx" method="post" action="mailto:email@email.com" enctype="text/plain">
<p><label for="id_noun1">noun1:</label>
<input id="id_noun1" type="text" name="noun1"/></p>
<p><label for="id_verb">Verb:</label>
<input id="id_verb" type="text" name="verb" /></p>
<p><label for="id_noun2">noun2:</label>
<input id="id_noun2" type="text" name="noun2"/></p>
<input type="submit" value="Submit" />