Astika Jadhav

Astika Jadhav

  • NA
  • 22
  • 110k

Mail sening in php

Jan 10 2012 1:44 AM
<?php //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"; ?>
 
I am using this code to send mail but o/p is Mail Failed.
no error.so plz help me

Answers (2)