如何从sql发送电子邮件?

时间:2015-05-27 12:19:49

标签: sql-server

我有一个名为status的列     状态       1       2       3       4       2     在状态列中有id,如果状态ID是2,那么我需要发送邮件,所以请帮我解决这个问题。

1 个答案:

答案 0 :(得分:1)

更新状态ID时,请稍后检查当前ID。如果id为2,请发送电子邮件。

示例:

mysql_query("UPDATE status SET id = '2' WHERE id = '1'");

//here u updated the status id. now check the new one

$query = mysql_query("SELECT * FROM Status WHERE whatever = 'whatsever'");
while($result = mysql_fetch_array($query)){
  $newid = $result['id'];
}
//now you have the new id. Test if its "2" and if true, send an email
if($newid == 2){
   //Send mailstuff here
}