function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
CloudPower1CloudPower1 

Notification after installing unManaged package successfully

For managed package there is PostInstallation script available:
global interface InstallHandler {
  void onInstall(InstallContext context)
}
which can be used to send notifictaion email after package is installed.

In the same way is there any way to get notification once an unManaged package is installed?

Please suggest if there is any solutions/ideas.
Ankit AroraAnkit Arora
I don't think so there is any option for unManaged package. But if you figure out after installation if user is redirected to any page or something, you can write a script to send an email. It's just a weird thought (as there is no straight forward way)