I am unable to send email from localhost using php script this is my code
<?php
ini_set("SMTP","[email protected]");
ini_set("smtp_port","25");
ini_set('sendmail_from', '[email protected]');
//define the receiver of the email
$to = '[email protected]';
//define the subject of the email
$subject = 'Test email';
//define the message to be sent. Each line should be separated with \n
$message = "Hello World!\n\nThis is my first mail.";
//define the headers we want passed. Note that they are separated with \r\n
$headers = "From: [email protected]\r\nReply-To: [email protected]";
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
?>
php.ini file...
[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
sendmail_from [email protected]
the out put is "Mail failed"
please help me to solve my problem.
bhoi.test@gmail
is a smtp server – PeeHaa