Psyduck - 可達鴨 之 鴨力山大
Current File : /home/irplbiz/public_html/maackolkata/sendemail.php |
<?php
$to = "vineet1986sunrise@gmail.com, devmean.alld@gmail.com";
$from="it@maackolkata.com";
$headers .= "Content-type: text/html; charset=utf-8"."\r\n";
$headers .= "From: Maac kolkata <".$from.">" . "\r\n";
$headers .= "MIME-Version: 1.0 \r\n";
$headers .= "Reply-To: The Sender <".$from.">\r\n";
$headers .= "Return-Path: The Sender <".$from.">\r\n";
$subject = "test-mail";
$message ="<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Johny</td><td>10th</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>";
$mail = mail($to,$subject,$message,$headers);
if ($mail)
{
echo '<p>Your message has been sent!</p>';
}
else
{
echo '<p>Something went wrong, go back and try again!</p>';
}
?>