| 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 |
``` |