MVC 2 联系表

发布于 2024-10-09 19:01:56 字数 66 浏览 0 评论 0原文

如何创建将提交到电子邮件地址的联系表单?电子邮件帐户将被硬编码并从表单字段抓取到抄送发件人。

谢谢!!

How do I create a contact form that will submit to an email address? The email account will be hard coded and grabbed from a form field to cc sender.

Thanks!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

雪花飘飘的天空 2024-10-16 19:01:56

您需要将表单提交到服务器上的控制器操作(根据问题的标题,我假设使用 ASP .NET MVC 2),该操作将构建并发送电子邮件。

大量教程介绍如何实际上发送电子邮件。基本上,您使用 System.Net 中的邮件对象来构造消息并将其发送到 SMTP 服务器。当然,这意味着您需要一个可以使用的 SMTP 服务器。您的电子邮件提供商可能有也可能没有公共电子邮件。如果不是,那就是另一个问题了。

You'll need the form to submit to a controller action on the server (I'm assuming ASP .NET MVC 2 based on the question's title) which will build and send the email.

There are plenty of tutorials on how to actually send the email. Basically, you use the mail objects from System.Net to construct a message and send it to an SMTP server. Naturally, this means you'll need an SMTP server you can use. Your email provider may or may not have a public one. If not, that's a whole other question.

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