> can somone give me a mail sending script it's like whatever i do there
> is always a error

I suspect the error is not in your actual script but in how you set up your
mail in php.ini...

Here's a test script:
<?php
    $headers = "From: [EMAIL PROTECTED]\r\n";
    $headers .= "Reply-to: [EMAIL PROTECTED]\r\n";
    mail('[EMAIL PROTECTED]', 'Test', 'This is a test',
$headers);
?>

What's the error message?

--
Visit the Zend Store at http://www.zend.com/store/
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to