html email including forms

liunx

Guest
I am currently trying to include a form within an html email. When the user will open his email, there is gonna be a form in it and a submit button. When the user will press submit, I want the "action" method of the form to call a .php file. Is this possible?<br />
<br />
I tried to troubleshoot this by making the action method opening a web page, it is not working.<br />
<br />
any advices please?<!--content-->In the action attribute, place the absolute URL to the .php file:<br />
<br />
action="http://www.somedomain.com/scripts/email.php"<br />
<br />
Is that what you already did, or did you use a relative URL like action="../scripts/email.php"?<!--content-->Seems like submit button in form when used in html email doesn't work. I then used a link (a href) instead, but I can't pass the values of my text field from my html email to my php file. that is the real problem. Cause it seems like html email only works with simple html tag, no javascript..<!--content-->
 
Back
Top