DAY 12 PHP PROGRAMMING

http://php.flashwebhost.com/tom/day_12_ex_1.php

PHP Code:

<?php
$toEmail 
'php.flashwebhost.com';$subject 'Email Notification';$body 'Welcome to our Email Service';
mail($toEmail$subject$body);
echo 
'Mail sent to ' $toEmail;