PluginProbe
SendWP / 1.3
SendWP v1.3
trunk 0.0.1 0.0.2 0.0.3 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1 1.2.10 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.3.1 1.4.4 1.4.5 1.4.6 1.4.8
sendwp / README.md

README.md in SendWP 1.3, at README.md

18 lines 459 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 # SendWP
2
3 The easy solution to transactional email in WordPress.
4
5 ## Local Development
6
7 The SendWP Server URL can be overriden in `wp-config.php` by adding the following:
8
9 ```php
10 define('SENDWP_SERVER_URL', 'https://wordpress.local');
11 ```
12
13 When developing with a local instance of the SendWP server, be sure to filter `https_ssl_verify`.
14
15 ```php
16 add_filter( 'https_local_ssl_verify', '__return_false' );
17 add_filter( 'https_ssl_verify', '__return_false' );
18 ```