代码:
<?php
$servername = "localhost";
$username = "username";
$password = "****";
// Create connection
$conn = new mysqli($servername, $username, $password);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT email, name FROM MyGuests";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
$conn->close();
?>
<table width="348" border="0">
<tr>
<td width="88">Name</td>
<td width="98">Email</td>
<td width="148">Select All
<label>
<input type="checkbox" name="checkbox" id="checkbox">
</label> </td>
</tr>
<tr>
<?php {?><td><?php echo $row["name"];?>
}
</td>
<td><?php echo $row["email"];?></td>
<td><label>
<input type="checkbox" name="checkbox" id="checkbox">
</label></td><?php } else {
echo "0 results";
}?>
</tr>
<tr>
<td> </td>
<td> </td>
<td><label>
<input type="submit" name="button" id="button" value="Send">
</label></td>
</tr>
</table>
我想将附有pdf文件的电子邮件发送给表格中列出的电子邮件用户。我在一个名为&#34; slips&#34;的文件夹中生成了一个pdf文件。其中包含电子邮件作为文件名,例如,每个文件名都带有数据库中电子邮件的名称,例如。电子邮件列中的smith@test.com和名为smith@test.com.pdf的pdf文件
用于此类问题的最佳PHP代码是什么。
答案 0 :(得分:0)
尝试使用此功能在您的电子邮件中发送PDF附件
http://swiftmailer.org/docs/messages.html