Write a Trigger to send an email to the account owner whenever the account’s industry is changed.
trigger SendIndustryChangeEmail on Account (before update) { for (Account a : Trigger.new) { Account oldAccount = Trigger.oldMap.get(a.Id); if (a.Industry != oldAccount.Industry) { Messaging.SingleEmailMessage email =