我一直在尝试在最后几个小时内在电子邮件中创建一个动态表格...而且我一直在尝试创建表格进出体内变量并在其中回显但是我没有成功我把我的代码放在下面.. anyhelp将是非常感谢..所有即时通讯尝试做的是创建一个包含一些mysql数据的表,然后将其发送给一些客户...这只是我已经失去了准备完成
$link = mysql_connect('localhost', 'root', '');
mysql_select_db('netbookdb');
$sql="SELECT * FROM rep_log WHERE s_date = '2012-05-31'";
$result=mysql_query($sql, $link);
$date=date('dmy');
require("../PHPMailer/class.phpmailer.php");
$mail = new PHPMailer();$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "smtp"; // specify main and backup server
$mail->From = "support@.vic.edu.au";
$mail->FromName = "Ict Devices";
$mail->AddAddress("email@h.vic.edu.au", "Matthew");
$mail->Subject = "Damage Log Report";
$mail->IsHTML(true);
$var='xlsx';
$date=date('dmy.');
$mail->Body = " while($rows=mysql_fetch_array($result)){
$cases=$rows['cases'];
$hg=$rows['hg'];
$surname=$rows['surname'];
$firstname=$rows['firstname'];
$claim=$rows['claim'];
$damage=$rows['damage'];
$cost=$rows['cost'];
}";
$mail->AltBody="Please Use a Html Compaible Email Veiwer";
if(!$mail->Send())
{
echo "Error sending: " . $mail->ErrorInfo;;
}
else
{
echo "Letter is sent";
}
答案 0 :(得分:1)
我使用了我创建的代码和平来创建动态表,然后将其回显到电子邮件正文中这只是一个基本的表,但可以进行改进
$link = mysql_connect('localhost', 'root', '');
mysql_select_db('Your Dataabse name');
$sql="SELECT * FROM rep_log WHERE claim='Insurance' AND s_date = '2012-05-31'";
$result=mysql_query($sql, $link);
$table= "<table width='100%' border='3' cellspacing='0' cellpadding='0'>";
$table .="<th>Cases</th>";
$table .="<th>HG</th>";
$table .="<th>Surname</th>";
$table .="<th>FristName</th>";
$table .="<th>Claim</th>";
$table .="<th>Damage</th>";
$table .="<th>Cost</th>";
while($rows=mysql_fetch_array($result)){
$cases=$rows['cases'];
$hg=$rows['hg'];
$surname=$rows['surname'];
$firstname=$rows['firstname'];
$claim=$rows['claim'];
$damage=$rows['damage'];
$cost=$rows['cost'];
$table .="<tr>";
$table .="<td>$cases</td>";
$table .="<td>$hg</td>";
$table .="<td>$surname</td>";
$table .="<td>$firstname</td>";
$table .="<td>$claim</td>";
$table .="<td>$damage</td>";
$table .="<td>$cost</td>";
$table .="</tr>";
}
$table .="</table>";
$date=date('dmy');
require("../PHPMailer/class.phpmailer.php");
$mail = new PHPMailer();$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "smtp"; // specify main and backup server
$mail->From = "support@ac.vic.edu.au";
$mail->FromName = "Ict Devices";
$mail->AddAddress("gs@hum.vic.edu.au", "Matthew");
$mail->Subject = "Damage Log Report";
$mail->IsHTML(true);
$var='xlsx';
$date=date('dmy.');
$mail->Body = "$table;";
$mail->AltBody="Please Use a Html Compaible Email Veiwer";
if(!$mail->Send())
{
echo "Error sending: " . $mail->ErrorInfo;;
}
else
{
echo "Letter is sent";
}