-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
57 lines (34 loc) · 1.53 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
=== Static Mail Sender Configurator ===
Contributors: jakubboucek
Tags: wp_mail, sender, mail from, mail sender
Requires at least: 6.0
Tested up to: 6.3
Stable tag: 0.10.0
Requires PHP: 7.4.0
License: MIT
License URI: https://github.com/jakubboucek/wp-static-mail-sender-configurator/blob/master/LICENSE
Simple & static configure WordPress internal mailer sender's (`From:`) address.
This plugin is very simple, it doesn't using database or another storage - you just add the constant `WP_MAIL_FROM` to `wp-config.php` or to Environment variable.
Plugin is define this configuration with major priority to set configuration as the **default value**, that means any orher plugin with lower priority applied afterwards can simple rewrite that value.
== Example ==
= Using constant in `wp-config.php` file: =
Add this row to `wp-config.php` file:
const WP_MAIL_FROM = 'noreply@wordpress.domain.tld';
You can define sender's name too by format:
"Name Lastname" <noreply@wordpress.domain.tld>
= Using Environment variable: =
Same principe is available by define Environment variable `WP_MAIL_FROM`.
== Changelog ==
= 0.10.0 =
- Plugin now supports WordPress version up to 6.3
- Plugin now requires WordPress version at least 6.0
- Plugin now requires minimal PHP version 7.4
= 0.9.3 =
- Plugin now supports WordPress version 5.8
= 0.9.2 =
- Fixes plugin localization requirements
- Plugin now requires WordPress version at least 4.9.6
= 0.9.1 =
- Fixes readme documentation only
= 0.9.0 =
- First release to public WordPress Plugin Directory