-
Notifications
You must be signed in to change notification settings - Fork 1
/
readme.txt
executable file
·68 lines (50 loc) · 2.64 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
=== Email verification on signups ===
Contributors: dornaweb, pelentak
Tags: email verification, confirm email address, verify email address
Requires at least: 5.9
Tested up to: 6.6.1
Stable tag: 1.1.7
Requires PHP: 7.4
License: GNU GPL V2. or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
Send verification links to newly registered users and ask them to confirm their email address to activate their account.
== Description ==
# Send Email verification links on Wordpress
This plugin sends verification emails to newly registered wordpress users and asks them to verify their email address.
***
## Adding your own localized email templates
The email templates are located under `tpl/emails` directory, and the file for verification email is called `verify.php` which is the default template for `english` language
however you can add your own language-specific template file by duplicating `verify.php` and renaming it to `verify-LOCALE_CODE.php`
for example for Portuguese ( Brazil ) you can add a file named `verify-pt_BR.php` ( you can get your wordpress installation locale code with [get_locale()](https://developer.wordpress.org/reference/functions/get_locale/) )
There are also `dw_verify_email_template_path` and `dw_verify_email_template_args` filters available if you want to make modifications from your theme\'s `functions.php`
***
## 3rd-party scripts included
[WP_MAIL](https://github.com/anthonybudd/WP_Mail) ( for sending templated emails )
== Installation ==
Seach the plugin's name in the install plugin section in your dashboard
Or upload the plugin and extract it to wp-content/plugins/ and then activate it in your dashboard, under the plugins page
== Frequently Asked Questions ==
= How does this plugin work? =
Once you activate it, new users that register on your site must verify their email address by a confirmation link which is sent to their email address, otherwise they won't be able to log-in.
== Screenshots ==
1. Settings pages
2. Add user
3. Wp-Login
== Changelog ==
= 1.1.7 2023-08-30 =
* Update plugin meta data.
* Check compatibility with latest WordPress version.
= 1.1.6 2023-08-25 =
* Security improvements.
* Check compatibility with latest WordPress version.
= 1.1.5 2023-04-05 =
* Fix release workflow.
= 1.1.4 2023-04-05 =
* Fix release workflow.
* Tested with latest WP version.
= 1.1.3 2023-04-05 =
* Santize/Escape all outputs in the plugin to prevent possible security issues. [#5](https://github.com/amiut/wp-email-verification/pull/20)
= 1.1.2 =
* Translations updated
* Bug fixed
[See changelog for all versions](https://raw.githubusercontent.com/amiut/wp-email-verification/main/changelog.txt).