Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Submitting a form from Email

Tags:

html

email

I was working on a project to submit a form from an email. The scenario is this. We will send a form to list of emails where in the customer has to fill in the form and once they hit submit, the form should be submitted and server should be able to retrieve the values that is provided by the person filling in.When i tried, it was not considering the submit button as form submit and no action is being performed. Can anyone help me to resolve this. Thanks in advance.

like image 465
bubbl Avatar asked Mar 08 '10 16:03

bubbl


1 Answers

HTML forms and client side code are typically restricted from most email clients. This is an obvious attack vector and as such your abilities are limited when dealing with HTML based email.

I would recommend providing a link to a web page.

like image 119
Dan Avatar answered Sep 24 '22 12:09

Dan