<?php

    $headers = "From: CS 75 Bot <chandras@fas.harvard.edu>" . "\r\n";
    $to = "chandrasekaran.siddarth@gmail.com";
    $subject = "Automatic email";
    $body = "CS 75: Building Dynamic Websites!";
    mail($to, $subject, $body, $headers);

    echo "Email sent!";
?>
