blob: c6cdac504405bb38c5d0fa5e7fd2997aa5de6274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
$to = "rush2jrp@gmail.com, rush2jrp@gmail.com";
$subject = "New Cloud Comment";
$message = "A new comment has been posted. <br> http://scilab.in/cloud_comments";
$from = "textbook@scilab.in";
$headers = "From: " . $from . "\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
|