构建电子邮件 html 页面最快、最简单的方法是什么?和订阅页面?
我们只想构建一个非常快速的包含两个页面的网页。一个页面有一个表格,用户可以填写表格并向我们发送电子邮件。另一个页面,用户可以输入电子邮件地址来订阅我们的新闻通讯。
构建这个的最快方法是什么?我们熟悉大多数 Web 应用程序技术(asp、php、jsp、perl 等),但仅仅为了做到这一点而实际构建一个 Web 应用程序和数据库等似乎太过分了。是否有一些预打包的软件或库或组件可以做到这一点?
We just want to build a very quick webpage that has two pages. One page where there is a form where a user can fill out a form and email us. Another page for users to put in their email address to subscribe to our newsletter.
What is the quickest way to build this? We are familiar with most web app technologies (asp, php, jsp, perl etc) but it seems such overkill to actually build a web app and database etc just to do this. Is there some prepackaged software or libraries or components that does just this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 PHP mail() 函数向自己发送电子邮件。
Use the PHP mail() function to send email to yourself.