UNIX Env values in HTML file

Hi,

I am sending 'mailx' one file.html from unix, and i want to put the field values from the unix environment.. like.

<p><input type="text" name="name" value="Your name" /></p>
in thin i want to put value "Your name" as let's say $HOME, can this be possible?

If yes..can anyone please help me

Regards,
Ankur Jain

HOME="Your name" export HOME

---------- Post updated at 05:42 AM ---------- Previous update was at 05:40 AM ----------

 
echo "<p><input type=\"text\" name=\"name\" value=\"${HOME}\" /></p>"