I can't get my mail function to work in the slightest. Can someone help me out? I create a php file with this code and it doesn't send an email. It doesn't do anything except echo sending mail...
I'll also include the php.ini mail function snipet.
<?php
$recipient = "jamest@msivt.com";
$subject = "Testing";
$message = "Hello!";
$extra = "From: [email]jamest@msivt.com[/email]\r\nReply-To: [email]jamest@msivt.com[/email]\r\n";
mail ($recipient, $subject, $message, $extra);
echo "Sending mail...";
?>
**********php.ini**************
[mail function]
; For Win32 only.
SMTP = smtp.hypermart.net
smtp_port = 25
; For Win32 only.
sendmail_from = jamest@msivt.com