2019-02-09, 07:52 AM
MyBB was unable to send the email using the PHP mail() function
using this function php mail() works.
<?
$from = "From: test <[email protected]>";
$to = "[email protected]";
$subject = "Hi! ";
$body = "TEST";
if(mail($to,$subject,$body,$from)) echo "MAIL - OK";
else echo "MAIL FAILED";
?>
attachement my mail setting
using this function php mail() works.
<?
$from = "From: test <[email protected]>";
$to = "[email protected]";
$subject = "Hi! ";
$body = "TEST";
if(mail($to,$subject,$body,$from)) echo "MAIL - OK";
else echo "MAIL FAILED";
?>
attachement my mail setting