只需通过电子邮件发送给我的文本框值(JQuery 和 HTML)
我试图找到一个超级简单的示例,该示例采用单个文本框值,并在用户点击“提交”时将其通过电子邮件发送到我指定的地址
表单将如下所示:
<form>
<input type="text" name="emailAddy" value="Enter Your Email Address" size="25" />
<input type="submit" value="Get Notified" />
</form>
单击时,它应该通过电子邮件发送 emalAddy 字段值对我来说...有什么想法吗?
Im trying to find an ultra simple example that takes a single text box value, and emails it to an address that I specify when the user hits "submit"
The form would be something like this:
<form>
<input type="text" name="emailAddy" value="Enter Your Email Address" size="25" />
<input type="submit" value="Get Notified" />
</form>
On click, it should email the emalAddy field value to me... Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在客户端发送电子邮件最接近的方法是使用 mailto:[email 相同问题
protected],此处解决了用于发送电子邮件的 你需要服务器端交互
the closest you can do to send an email on the client-side is using mailto:[email protected], the same issue was addressed here
For sending emails you need a server-side interaction
您可以使用一些 javascript 将文本框值提供给 mailto: 链接...请参阅语法 此处。然后你甚至不需要在服务器端编写代码......他们的邮件客户端完成这项工作。
You could use some javascript to feed the textbox value to a mailto: link...see syntax here. Then you don't even have to code the server side...their mail client does the work.
AFAIK,您不能使用纯 jQuery 和 HTML 来发送电子邮件。您需要某种服务器端代码来发送邮件。
您可以做的是,提交表单,在服务器端提取详细信息并发送电子邮件。 这个问题和那里给出的链接可能会有所帮助。
AFAIK, You can't use plain jQuery and HTML to send emails. You need some sort of server side code to mail.
What you can do instead is, submit the form, extract the details on the server side and send the email. This question and links given there might be of help.