I'm trying to created a plugin that will notify me by email when a user: 1. signs up 2. unsubscribes I found some code in the forums that worked for the new user sign up, but when I try and add in the unsubscribe that doesn't seem to be functioning. Here's what I have: PHP: class Am_Plugin_Newmember extends Am_Plugin{ const PLUGIN_STATUS = self::STATUS_PRODUCTION; const PLUGIN_REVISION = '1.0.0'; function onSignupUserAdded(Am_Event $event) { $user = $event->getUser(); @mail('user@example.com ', ' aMember4 new user ', print_r($user->toRow(), TRUE)); } function userUnsubscribedChanged(Am_Event $event) { $user = $event->getUser(); @mail('user@example.com', 'aMember4 user unsub', print_r($user->toRow(), TRUE)); }} What am I doing wrong? Thanks!