Hi,
I didn't get anything on my skype.
As I said, the plugin uses 1.5 code. You need to change the code so that it is compatible with 2.5.
I can see in the plugin that it uses the usertype column of the database in order to get a list of the super admins.
That column is not used anymore in 2.5
So you need to change that.
You will need to change the query:
$query = 'SELECT name, email, sendEmail' .
' FROM #__users' .
' WHERE LOWER( usertype ) = "super administrator"';
to:
$query = 'SELECT name, email, sendEmail' .
' FROM #__users AS a JOIN #_usergroup_map AS b ON a.id=b.user_id' .
' WHERE b.group_id=8';