<a href="mailto:?subject=PHP information&body=<?php echo($link); ?>">send link by e-mail</a>
I can use the php to grab the value of the current page and assign it to $link. if people click the above link. it will simulate like he has gone to "file->send->link by email" in internet explorer.
my question is if i modify the above codes,
<a href="mailto:?subject=Microsfot Information&body=<?php echo($message_body); ?>">send page by e-mail</a>
and the $message_body is the html resource codes of current page which I get by using file() function on the current page.
Will then the above codes will simulate like go to "file->send->page by email"?
is there limitation about how many characters we can assign to "body=" in
<a href="mailto:?subject=PHP Information&body=
Thanks!