|
Posted by Steve on 11/15/06 22:08
perhaps this?
mail ($_POST['email']), 'Thank you for registering', $body, 'From:
admin@mydomain.co.uk';
notice you've closed off the mail() function too early and placed a comma
after the enclosing parenth. try:
mail($_POST['email'], 'Thanks a bunch', $body, 'From:admin@mydomain.co.uk');
hth,
me
Navigation:
[Reply to this message]
|