Send email using the PHP mail() function
Description
How to send an email from within a PHP page using the built in mail() function.
The code
<?php
// Your email address
$email = "
[email protected]";
// The subject
$subject = "Enter your subject here";
//...