I'm assuming you can't access the settings page either? /settings/approvalemailsettings/?
You need to add the following addon.json file:
{
"name":"ApprovalEmailNotification",
"key":"ApprovalEmailNotification",
"description":"Sends an email when a new application for membership is received.",
"Version":"0.1.0",
"type":"addon",
"settingsUrl":"/settings/approvalemailsettings"
}
And change "class ApprovalEmailNotification extends Gdn_Plugin" to "class ApprovalEmailNotificationPlugin extends Gdn_Plugin" in default.php.
Could you see if it works after you added some email adresses to that list?
Comments
I'm assuming you can't access the settings page either? /settings/approvalemailsettings/?
You need to add the following addon.json file:
And change "class ApprovalEmailNotification extends Gdn_Plugin" to "class ApprovalEmailNotificationPlugin extends Gdn_Plugin" in default.php.
Could you see if it works after you added some email adresses to that list?
Yes, I couldn't see setting page. After your modification setting item for this plugin has appeared. And system sent message. Thanks. Now it works.