a simple script simple mail function i called in my localhost and live server.
$message = "Line 1\nLine 2\nLine 3";
$message = wordwrap($message, 70);
$rs = mail('myemail@gmail.com', 'My Subject', $message);
both of them return bool true. with localhost i can receive email but in live server i cannot receive any mail.
then i check /var/mail/www-data there is some message
Mailing to remote domains not supported
linux, apache or php problem?