我的发送电子邮件按钮不起作用“这是我的 html。有人看到问题吗?
<input type="submit" value="SUBMIT EMAIL TO: info@whatshouldisay.ca" <a href="mailto:info@whatshouldisay.ca">
我的发送电子邮件按钮不起作用“这是我的 html。有人看到问题吗?
<input type="submit" value="SUBMIT EMAIL TO: info@whatshouldisay.ca" <a href="mailto:info@whatshouldisay.ca">
您可以使用Form
带有 action 属性的标签来提交mailto
.
这是一个例子:
<form method="post" action="mailto:youremail@youremail.com" >
<input type="submit" value="Send Email" />
</form>
有几种方法可以从 HTML 发送电子邮件。通常你会看到人们像这样发送邮件:
<a href="mailto:email@address.com">Click to email</a>
但是,如果您是通过按钮执行此操作,则可能需要查看 javascript 解决方案。