-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add capability to send activation emails. Resolves issue #2.
- Loading branch information
Simon Champion
committed
Jan 30, 2017
1 parent
904387d
commit 786417f
Showing
4 changed files
with
94 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension version="3.0" type="plugin" group="user" method="upgrade"> | ||
<name>PLG_USER_NOTIFYACTIVATION_NAME</name> | ||
<version>2.0.0</version> | ||
<version>2.1.0</version> | ||
<creationDate>December 2016</creationDate> | ||
<author>Simon Champion</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
|
@@ -40,6 +40,20 @@ | |
<field type="text" name="subject" default="User activation" | ||
label="PLG_USER_NOTIFYACTIVATION_SUBJECT_LABEL" description="PLG_USER_NOTIFYACTIVATION_SUBJECT_DESC" /> | ||
</fieldset> | ||
<fieldset name="email" label="PLG_USER_NOTIFYACTIVATION_FIELDSET_EMAIL"> | ||
<field name="email_on_admin_instant_activation" type="radio" label="PLG_USER_NOTIFYACTIVATION_EMAIL_ON_ADMIN_INSTANT_LABEL" description="PLG_USER_NOTIFYACTIVATION_EMAIL_ON_ADMIN_INSTANT_DESC" class="btn-group btn-group-yesno" default="0"> | ||
<option value="1">PLG_USER_NOTIFYACTIVATION_EMAIL_YES</option> | ||
<option value="0">PLG_USER_NOTIFYACTIVATION_EMAIL_NO</option> | ||
</field> | ||
<field name="email_on_admin_email_activation" type="radio" label="PLG_USER_NOTIFYACTIVATION_EMAIL_ON_ADMIN_ACTIVATE_LABEL" description="PLG_USER_NOTIFYACTIVATION_EMAIL_ON_ADMIN_ACTIVATE_DESC" class="btn-group btn-group-yesno" default="0"> | ||
<option value="1">PLG_USER_NOTIFYACTIVATION_EMAIL_YES</option> | ||
<option value="0">PLG_USER_NOTIFYACTIVATION_EMAIL_NO</option> | ||
</field> | ||
<field name="email_on_admin_panel_activation" type="radio" label="PLG_USER_NOTIFYACTIVATION_EMAIL_ON_ADMIN_VIA_PANEL_LABEL" description="PLG_USER_NOTIFYACTIVATION_EMAIL_ON_ADMIN_VIA_PANEL_DESC" class="btn-group btn-group-yesno" default="0"> | ||
<option value="1">PLG_USER_NOTIFYACTIVATION_EMAIL_YES</option> | ||
<option value="0">PLG_USER_NOTIFYACTIVATION_EMAIL_NO</option> | ||
</field> | ||
</fieldset> | ||
</fields> | ||
</config> | ||
</extension> |