hi, im working on a mail function on a linux server.
i did a simple mail function on localhost and it works
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: email@domain.com' . "\r\n";
$mail('receiver@domain.com','test email','test email body',$headers);
however, this similar code do not work on a live server. im on some restrictions here and unable to configure php.ini or install pear mail package.
is there anyway to work around this by just using php codes?