29 Apr
2002
29 Apr
'02
23:06
On Monday 29 April 2002 6:08 pm, steve wrote:
I have recovered e.g. $message from an html form. What is the php code to e-mail it to myself?
$to="me@email.address"; $subject="Email from me"; mail ($to,$subject,$message); You can also have an optional fourth argument, for extra headers, eg $headers="From: My website form <me@email.address>"; Kevin