I have a code to send a reminder before expiry of warranty. Currently I am testing using localhost (XAMPP, sendmail with Gmail SMTP server)
The code is as below.
The table gets displayed well in the browser and the email is sent successfully. However the rows with the dynamic values doesnt have table format.
The email appears as follows
Tag Serial Model Manufacturer Warranty date (This row as proper table format) TB100 SR101 iPad Apple 2012-09-29 This row in plain text, without any table border)
Pls help. Thanks a lot.
<?php
$host="localhost";//Hostname""
$username="";//Mysqlusername
$password="";// Mysql password
$db_name="test"; // Database name
// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
$data=mysql_query(" SELECT Tag,Serial, manufacturer, model, Warranty_date FROM asset_view WHERE DATEDIFF(Warranty_date, CURDATE())<90");
$count = mysql_num_rows( $data );
if($count==0)
{
echo 'no records';
exit;
} else {
$body = '<html><b>
<table border="0" width="70%"><tr><td>Tag</td><td>Serial</td> <td>Model</td>
<td>Manufacturer</td> <td>Warranty date</td></b>
</tr>';
while ($row = mysql_fetch_array($data)){
$body .= '<tr>
<td>'.$row['Tag'].' </td>
<td>'.$row['Serial'].'</td>
<td>'.$row['model'].'</td>
<td>'.$row['manufacturer'].'</td>
<td>'.$row['Warranty_date'].'</td>
</tr>';
}
$body .= '</table> </html>';
echo $body;
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To:Admin <test89714@gmail.com>' . "\r\n";
$headers .= 'From:CIMS <test89714@gmail.com>' . "\r\n";
$email = "test89714@gmail.com";
$subject = "Asset Warranty expiry reminder";
mail($email,$subject,$body,$headers);
echo 'sent';
}
?>
<b>tag around the start of your table tag and the end of the first row? It might not solve your problem, but I don't think it's needed. – andrewsi Sep 24 '12 at 15:43