Richard Heyes wrote:
in my php.ini, I have this set
sendmail_from = [EMAIL PROTECTED]

yet when I do this command :("[EMAIL PROTECTED]","TEST MAIL","TESTING MAIL"); I get this message Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in C:\Inetpub\wwwroot\intranet\test.php on line 4

And if instead of using the php.ini directive you use the fourth argument to mail()?

Eg:

<?php
    mail("[EMAIL PROTECTED]",
         "TEST MAIL",
         "TESTING MAIL",
         '[EMAIL PROTECTED]');
?>


Oops. That should be:

<?php
    mail("[EMAIL PROTECTED]",
         "TEST MAIL",
         "TESTING MAIL",
         'From: [EMAIL PROTECTED]');
?>

--
Richard Heyes
+44 (0)800 0213 172
http://www.websupportsolutions.co.uk

Knowledge Base and HelpDesk software
that can cut the cost of online support

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to