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?
I want to send a user feedback form through email. when they press submit
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.