In Dynamics CRM, workflows and plugins are used to automate business processes.They allow businesses to hook onto events that occur in the system. Here we will look at the differences between the two and when to use which one. Looking in Dynamics CRM in our default solution, we see Processes and Plug-in Assemblies. Processes are where our workflows are located, along with actions and business process flows. You can see there are several processes below: Let’s take a look at one of these – Auto Response Email for Case: As can be seen, this workflow will run on the Case entity when a record status is changed, and it will run in the background. The logic says: If the case status is resolved, send a new email message and stop the workflow Otherwise, stop the workflow Opening the first step, we can see we have an email template, where we can add the from and to as dynamic values from the case itself. The message of the email allo...