Finding the list of email addresses used in sending scheduled reports
Performance Management - All versions
To get the email addresses, would need to get that in the MySQL table:
Login to MySql, default path is /opt/CA/MySql/bin
./mysql -uroot -p
You'll be prompted for the MySql root user password
Then run the following select statement
SELECT distinct EmailAddress FROM netqosportal.email_schedules;