Security for Bitbucket can send e-mail notifications after scans complete, containing links to view and download the scan results.

Use the REST API for Mass Scanning and provide the email parameter to your REST call, like so:

curl -u admin -X PUT "https://{bitbucket.server}/rest/security/latest/status/[email protected]&[email protected]"
curl -u admin -X PUT "https://{bitbucket.server}/rest/security/latest/status/projects/{projectKey}[email protected]&[email protected]"
curl -u admin -X PUT "https://{bitbucket.server}/rest/security/latest/status/projects/{projectKey}/repos/{repoSlug}[email protected]&[email protected]"
curl -u admin -X PUT "https://{bitbucket.server}/rest/security/latest/status/projects/{projectKey}/repos/{repoSlug}/branches?name=main-branch&[email protected]&[email protected]"
CODE

These commands will send e-mails to both [email protected] and [email protected] when the scans complete. The email parameter may be specified multiple times.

E-mail notifications are not currently exposed via the user interface – only via the REST API.