sending feedback form through email
开发者_开发技巧I want to send a user feedback form through email. when they press submit button form should go to the mentioned id. How to achieve this? is it possible?
The best way of going about this would be to create some kind of contact form, on your actually site, just don't have the direct URL visible to everyone, then rather than sending the actual form to a client/customer/whatever, just send them the link to the form and allow them to fill it in on the site and submit it, if you do it in php then the email can be sent directly to you personally.
This will talk you through creating the form: http://php.about.com/od/phpapplications/ss/form_mail.htm
You may also want to research validation to other any nasty suprises through hackers or injections, and try to make it as secure as possible.
Hope this helps.
精彩评论