I think the best approach would be to do this in the procedure whether you update the table. something like thisCREATE PROC UpdateOrderASDECLARE @CHANGED_ORDERS(Pit_Id int,Old_Price float,New_Price float)....other codeUPDATE OrderSET Price=newvalue,...OUTPUT INSERTED.pitid,DELETED.Price,INSERTED.Price INTO @CHANGED_ORDERS--send mail to useEXEC sp_send_dbmail....GO
look into books online for syntax and usage of sp_send_dbmailhttp://msdn.microsoft.com/en-us/library/ms190307.aspx