Hi,
I wrote a code that send an email with HTML tags like buttons and tables and text areas;
The whole Idea is that this email will be sent to the supervisor with registration information of the users,
I have the textarea included with the email, and I want the supervisor to write his notes in this textarea and click accept button or Decline button and this will send an email back (reply) to the person who is trying to register with what ever inside the textarea but I could not pass the value of the textarea at all.
any ideas please......
HTML emial Passing values
use [MAN]mail[/MAN] to create a form in your email and set the action to one of your server pages...
I did this,
the only problem is that I could not send the value of the textarea
from the email to the Web page in any way.
Or
its either I send the variables or the textarea but not both
if u have values to pass to the action page, you can use query string in the action (action.php?variable=1&variable=2) or use hidden form fields (<INPUT TYPE="hidden" name="variable1" value="bleh">)
Thank you very much
Its working now