只需通过电子邮件发送给我的文本框值(JQuery 和 HTML)

发布于 2024-11-09 10:23:35 字数 328 浏览 0 评论 0原文

我试图找到一个超级简单的示例,该示例采用单个文本框值,并在用户点击“提交”时将其通过电子邮件发送到我指定的地址

表单将如下所示:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

木森分化 2024-11-16 10:23:36

在客户端发送电子邮件最接近的方法是使用 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

挽你眉间 2024-11-16 10:23:36

您可以使用一些 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.

野却迷人 2024-11-16 10:23:35

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文