在电子邮件中插入复选框字段
我正在寻找一种将复选框字段插入电子邮件的方法,这样当您回复电子邮件时,您可以发送选中的字段!
我使用 PHP 创建了一封 HtML 电子邮件,但当我回复时,复选框字段会丢失值。
I'm looking for a way to insert checkbox fields into an email, so when you reply the email you can send the checked fields!
Using PHP I have create an HtML email but when I reply, the checkbox fields lose values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能在 HTML 电子邮件中使用表单。它只是从电子邮件中删除的。此外,当您发送电子邮件回复时,它的工作方式与提交表单不同。
You can't use forms in HTML e-mails. It's simply trimmed off from e-mail. Also, when you send a reply to an e-mail it isn't working like submitting a form.
这无法按照您尝试的方式完成。电子邮件客户端的功能非常有限,并且与普通网络服务器的工作方式不同。您应该做的是将表单放在您的服务器上,然后链接到它以让用户访问您的网站来填写它。棘手的部分是让用户有足够的兴趣去真正填写你的表格。
This can't be done the way you try to do it. E-mail clients are very limited in functionality and do not work the same way normal webservers do. What you should do is have the form on your server, then link to it to have the users come to your site to fill it out. The tricky part is getting the users intrested enough to actually bother to fill out your form.