Changeset 2524693
- Timestamp:
- 05/01/2021 07:44:43 PM (5 years ago)
- Location:
- wp-smtp/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-smtp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-smtp/trunk/readme.txt
r2519558 r2524693 6 6 Requires at least: 2.7 7 7 Tested up to: 5.7.1 8 Stable tag: 1.2. 28 Stable tag: 1.2.3 9 9 10 10 WP SMTP can help us to send emails via SMTP instead of the PHP mail() function. … … 36 36 37 37 == Changelog == 38 39 = 1.2.3 = 40 Fix auto loading require path 38 41 39 42 = 1.2.2 = -
wp-smtp/trunk/wp-smtp.php
r2519558 r2524693 5 5 Plugin Name: WP SMTP 6 6 Description: WP SMTP can help us to send emails via SMTP instead of the PHP mail() function and email logger built-in. 7 Version: 1.2. 27 Version: 1.2.3 8 8 Author: Yehuda Hassine 9 9 Text Domain: wp-smtp … … 24 24 define( 'WPSMTP_ASSETS_URL', WPSMTP_URL . 'assets/' ); 25 25 26 require_once 'vendor/autoload.php';26 require_once __DIR__ . '/vendor/autoload.php'; 27 27 28 28 class WP_SMTP {
Note: See TracChangeset
for help on using the changeset viewer.