thanks for so quick response
i have problem with sending mail, i have tried mail() and smtp using my own smtp settings but it is not working
---------- Post added at 10:23 PM ---------- Previous post was at 10:20 PM ----------
my send mail function looks like
function m_sendmail_mail($to,$subject,$mailbody,$from_name){
$from = $config["smtp_from"];
$headers = "Content-type: text/html; charset=windows-1251 \r\n";
$headers .= "From: $from_name <$from>\r\n";
$headers .= "Reply-To: $from\r\n";
$headers .= "X-Mailer: PHP/" . phpversion();
mail($to, $subject, $mailbody, $headers);
}
it shoul be ok, i think