<?php
    $to = "someone@gmail.com";
    $message = "
    <html>
    <head>
        <title>Congratulations</title>
    </head>
    <body>
        <h1>We inform you that You have one lottery!</h1>
        <p>$nbsp;</p>
        <p>Please send us a check so we can ship you the lottery money.</p>
        <p>p.s. This is not a spam.</p>
    </body>
    ";
    $headers .= "From: FriendFromNigeria@yahoo.com<br />";
    
    mail ($to, "Subject", $message, $headers);
?>