|
Posted by baustin75 on 10/03/05 17:29
Posted: Mon Oct 03, 2005 1:41 pm Post subject: cannot mail() in ie
only when debugging in php designer 2005
--------------------------------------------------------------------------------
Hello,
I have a very simple problem but cannot seem to figure it out. I have a
very simple php script that sends a test email to myself. When I debug
it in PHP designer, it works with no problems, I get the test email. If
I try to run this same script in Internet Explorer or Opera I never
recieve the email. I am very new a this, any input would be
appreciated. I am saving this file as test.php.
-------------------------------------------------------------------
<html>
<body>
<?php
$brian = "test@test.com";
$subject = "MAC";
$body = "first test email";
$from = "brian@test.com";
mail ($brian, $subject, $body, $from)
?>
</body>
</html>
-------------------------------------------------------------------
Navigation:
[Reply to this message]
|