Email record message HTML preview and notification preview show difference in the contentIssue Email record message HTML preview and notification preview shows difference in the content. Use case: Try to push the first_name from the event parm in the message notification body using mail script. When event is triggered, email notification is sent. However, when you check the message HTML preview, it does not show the first_name. But when you check the notification preview from the triggered notification by selecting "Existing Event" and choosing the triggered event, it shows the first_name. Mail Script: var jsonStr = current.getDisplayValue("parm2");var userobj = JSON.parse(jsonStr);template.print(userobj.first_name);ReleaseAllCausecurrent.getDisplayValue("parm2") will show the name from the current object so it will not show the event parm values. This is the reason it is showing the first_name in the notification preview.ResolutionTo get the event parm2 value to display the first_name in the email, use: event.getDisplayValue("parm2") This will pick the value from the event record.