使用 html 和 Javascript 在提交反馈表单时自动发送电子邮件
我创建了一个 html 表单,其中包含以下字段:
- 名称(文本框)
- 电子邮件(文本框)
- 评论(文本区域)
和用于提交表单的“提交”按钮。
我希望在用户成功提交表单后收到一封电子邮件。我该怎么做?
(抱歉我的英语不好)
I have created one html form with following fields:
- Name (Text Box)
- Email (Text Box)
- Comments (Text area)
and a Submit button to submit the form.
I want to receive an email once the user submits the form successfully. How do I do this?
(Sorry for my poor English)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法通过 HTML 或 javascript 自动执行此操作(除非您不介意提示用户通过
mailto:
链接发送电子邮件)。您需要使用一些服务器端编程,例如 PHP 或 .NET。大多数(如果不是全部)服务器端编程语言都有自己的邮件库。
You can't do this automatically by HTML or javascript (unless you don't mind prompting the user to send the email via a
mailto:
link).You'd need to do with with some server side programming, such as PHP, or .NET. Most, if not all, server side programming languages have their own mail libraries.
发送电子邮件只能通过服务器端技术来完成,无法通过html/javascript来实现
请写下您使用的服务器技术,我将更新答案
Sending an email can only be done with server-side technology, it can't be achieved with html/javascript
Please write down what server technology are you using and I'll update the answer