Hi Everyone,
i need urgent help from you.iam trying to send mail using php mail() functions.iam using XAMPP server.if i run above code iam getting "succesfuuly sent" message as a output but iam not getting any mail in my inbox address.please help methis is my code.

<?php
if(isset($_POST['submit']))
{
$name=$_POST['name'];
$age=$_POST['age'];
$address=$_POST['address'];
$comment=$_POST['comment'];
$to="shashigowda@example.com";
$subject="Details";
$message="hi $name.you are $age years old.and your current address is $address.";
$retval=mail($to,$subject,$message);
if($retval==true)
{
echo "succesfully sent";
}
else
{
echo "try again";
}
}    
?>

<!DOCTYPE>
<html>
<head>
</head>
<body>
<form action="mail.php" method="POST">

Name:<input type="text" name="name" required>
Age:<input type="number" name="age" required>
Adress:<input type="text" name="address" required>
Comment:<textarea row="4" col="10" name="comment"></textarea><br />
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>

Recommended Answers

All 4 Replies

help me as soon as possible.please

Hi,

at basic you should include the headers to define From and Reply-To, check example 2 of the documentation:

Where From is one of your emails and Reply-To the sender email and you will need a mailer application to send the message, like sendmail which is usually installed on linux and mac platforms. For windows I have no idea of which local solution you could use (maybe sendmail in cygwin?)

Additionally if your email requires the connection to an SMTP then mail() is not the best approach.

Pay attention to this point: if you're working on a script that will run on a remote server then check the hosting documentation (or ask to the support) if SMTP is required when sending an email from the registered domain. In that case read this thread:

In case the From header is populated by a gmail account, then SMTP is required, by not authenticating the script will fail.

And do a search on Daniweb, this argument has been discussed a lot of times.

I would suggest you look at SwiftMailer (my fav) or PHPMailer to send mails. For all practical purposes I don't use PHP mail()

Here's a sample from Documetation

require_once 'lib/swift_required.php';

// Create the Transport
$transport = Swift_SmtpTransport::newInstance('smtp.example.org', 25)
  ->setUsername('your username')
  ->setPassword('your password')
  ; 

// Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);

// Create a message
$message = Swift_Message::newInstance('Wonderful Subject')
  ->setFrom(array('john@doe.com' => 'John Doe'))
  ->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))
  ->setBody('Here is the message itself')
  ;

// Send the message
$result = $mailer->send($message);

The obvious one, already mentioned
Xampp does not install mail servers, there is no facility to send mail from localhost
There is no error returned from a non-existent server so error checking does not respond as error
I like swiftmailer too

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.