Hello,
I have a pb with mail() function.
my script run ok on a linux but not on a nt:
<?
ini_set("SMTP", "192.168.0.126");
ini_set("sendmail_from", "info <[EMAIL PROTECTED]>");
mail("fred <[EMAIL PROTECTED]>", "the subject", "message");
?>
On my windows nt server I can only run:
<?
ini_set("SMTP", "192.168.0.126");
ini_set("sendmail_from", "[EMAIL PROTECTED]");
mail("[EMAIL PROTECTED]", "the subject", "message");
?>
I have an error as soon as i use eaml like: mail <[EMAIL PROTECTED]>
It is allways the same smtp server.
Is someone have an idea ??
Thanks for your support.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php