hi guys am a PHP newbie, i have a problem,
<?php
// The message
$message = "Line 1\nLine 2\nLine 3";
// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);
// Send
mail('caffinated@example.com', 'My Subject', $message);
?>
======
i try these PHP.NET's example code for 'mail' but it doest work for me, anyone knows whats the problem?, but other PHP functions work with me.




Bookmarks