我已创建此表单,以便将php中的电子邮件发送到名为login.So的表中保存在数据库中的所有电子邮件地址。我为每个要发送电子邮件的地址创建一个发送电子邮件按钮。我想向多个用户发送不同的电子邮件,而不是使用同一个机构发送如下相同的电子邮件"你好,你已被选中"。这可能在php吗?谢谢!
<html >
<head>
<title></title>
</head>
<body>
<?php
if( !($database=mysql_connect("localhost","root",""))||!(mysql_select_db("st_login",$database)) )
print("Could not connect");
$query="SELECT * FROM `login`";
if(!($result=mysql_query($query,$database)))
{
print("Could not execute query");
die (mysql_error());//ose error
} else
while($query_row=mysql_fetch_assoc($result)){
$firstname=$query_row['firstname'];
$email=$query_row['email'];
$id=$query_row['id'];
echo $firstname;
echo "<input type='submit' name='mail' value='Send email' >"; echo "<br />";
if(isset($_POST['mail'])) {
$to='$email';
$body='Hello!You have been selected!';
if(mail($to,$subject,$body,$headers)){
echo "mail sent to..";}
else echo'errorr sending the email';
}
}
mysql_close($database);
?>
</body>
</html>
&#13;