This is a collection of really useful and handy PHP code snippets. You can share your code snippet through "Post a snippet" page if you think it may be useful for others. We keep adding new snippets all the time !
<?php
$To = 'recepient@yourdomain.com';
$Subject = 'Send Email';
$Message = 'This example demonstrates how you can send plain text email with PHP';
$Headers = "From: sender@yourdomain.com rn" .
"Reply-To: sender@yourdomain.com rn" .
"Content-type: text/html; charset=UTF-8 rn";
mail($To, $Subject, $Message, $Headers);
?>