我这里有简单的代码,
但无法使其发挥作用。还有其他办法吗?
它会在电子邮件中发送HTML编码,而不是表格。
还有其他办法吗?
或者如何创建csv或excel并自动附加电子邮件。?
$to = "beback@gmail.com";
$subject = 'New Employee file';
$message = "<html>
<head>
<title>New Employee</title>
</head>
<body>
<p>Here IS the New Employee List</p>
<table border=1>
<tr>
<th>FirstName</th>
<th>LastName</th>
<th>POSNum</th>
<th>POSPassword</th>
<th>location</th>
</tr>
<tr>";
$table = "send_payroll"; // Enter Your Table Name
$sql = mysql_query("select last_name,
first_name,
pos_num,
pos_password,
store
from $table");
$columns_total = mysql_num_fields($sql);
while ($row = mysql_fetch_array($sql)) {
$message .="<tr>";
for ($i = 0; $i < $columns_total; $i++) {
$message .='<td>'.$row["$i"].'</td>';
}
$message .="</tr>";
}
$message .="</tr>
</table>
</body>
</html> ";
// Always set content-type when sending HTML email
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
$headers .= "From: Nirav <be.gmail.com>\r\n";
echo "$message" ; //Display table correctly
mail($to, $subject, $message, $headers);
答案 0 :(得分:0)
参考您的评论,传入邮件具有内容类型text / plain我假设您的本地邮件服务器配置问题。此外,防火墙可能会阻止或覆盖传出标头。
尝试发送包含PHPMail类的电子邮件。对于测试,您可以使用gmail中的SMTP服务器。