How to send simple plain text email using php

How to send simple plain text email using php

PHP use the mail() function to send an email. PHP Mail() function requires three mandatory parameters and two optional parameters. First Three parameters specify the email address, the subject of the mail and the actual message of mail.

mail( to, subject, message, headers, parameters );

Here we are writing Example for You.
Following example will send an HTML email message to xyz@learn4better.com. You can code this program in such a way that it should receive all content from the user and then it should send an email.

<html>
<head>
<title>Sending simple plain text email using PHP</title>
</head>
<body>
  <?php   
  $to = "xyz@learn4better.com";
  $subject = "This is subject of email";
  $message = "This is simple text message of email.";
  $header = "From:abc@learn4better.com \r\n";
  $mailto = mail ($to,$subject,$message,$header);
  if( $mailto == true )
  {     echo "mail sent successfully...";   }   
  else   {     echo "mail could not be sent...";   }?>
</body>
</html>





About Author

My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.

Sign up for weekly update

Milkshake is almost ready. If you're interested in testing it out, then sign up below to get exclusive access.