Code has been added to clipboard!

Sending PHP Mail

Example
<?php
// The text
$text = "The first message";

// use wordwrap() if the lines are more than 70 characters
$text = wordwrap($text, 70);

//send the email
mail("[email protected]", "My subject", $text);
?>