MVC 2 联系表
如何创建将提交到电子邮件地址的联系表单?电子邮件帐户将被硬编码并从表单字段抓取到抄送发件人。
谢谢!!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将表单提交到服务器上的控制器操作(根据问题的标题,我假设使用 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.