Skip to content

rob-alexa/salesforce-sandbox-postcopy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 

Repository files navigation

sandbox-postcopy

implements Salesforce's SandboxPostCopy and Batchable interfaces to modify email addresses on completion of a sandbox refresh

In Salesforce's Spring '16 release, the Run Script After Sandbox Creation and Refresh feature was released. It allows developers to create an Apex class that implements the SandboxPostCopy interface and specify the class on the Sandbox Options screen (pictured in the screenshot at the top of this post).

One use for this is to modify email addresses that are included in records as part of refreshing a partial copy or full sandbox. Salesforce automatically appends .invalid to sandbox user email addresses but doesn't do so for other types of records (such as leads, contacts, or queues). Leaving these unmodified could end up in undesired email messages being sent to real prospects, customers, or employees.

I found some code published by Steve O'Neal that used SandboxPostCopy in combination with the Batchable interface to modify sandbox email addresses in a way that can handle large numbers of records. I made a few modifications to Steve's code, including:

  • changing the batch classes so the test class will work in production orgs (not just sandboxes)
  • adding the group object (type = 'queue')
  • making the modified contact/lead/queue email addresses to be in the same format as the user email addresses

Deploy to Salesforce

About

implements Salesforce's SandboxPostCopy interface and Batchable interface to modify email addresses on completion of a sandbox refresh

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages