Version Description
Fix auto loading require path
Download this release
Release Info
| Developer | yehudah |
| Plugin | |
| Version | 1.2.3 |
| Comparing to | |
| See all releases | |
Code changes from version 1.2.2 to 1.2.3
- readme.txt +7 -5
- wp-smtp.php +27 -11
readme.txt
CHANGED
|
@@ -1,11 +1,10 @@
|
|
| 1 |
=== WP SMTP ===
|
| 2 |
-
Contributors: yehudah
|
| 3 |
-
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=yehudahas@gmail.com&item_name=Donation+for+WPSMTP
|
| 4 |
Tags: wp smtp,smtp,mail,email,logs,mailer,wp mail,gmail,yahoo,mail smtp,ssl,tls
|
| 5 |
-
|
|
|
|
| 6 |
Requires at least: 2.7
|
| 7 |
-
Tested up to: 5.
|
| 8 |
-
Stable tag: 1.2.
|
| 9 |
|
| 10 |
WP SMTP can help us to send emails via SMTP instead of the PHP mail() function.
|
| 11 |
|
|
@@ -36,6 +35,9 @@ WP SMTP plugin was originally created by BoLiQuan. It is now owned and maintaine
|
|
| 36 |
|
| 37 |
== Changelog ==
|
| 38 |
|
|
|
|
|
|
|
|
|
|
| 39 |
= 1.2.2 =
|
| 40 |
Just update info
|
| 41 |
|
| 1 |
=== WP SMTP ===
|
|
|
|
|
|
|
| 2 |
Tags: wp smtp,smtp,mail,email,logs,mailer,wp mail,gmail,yahoo,mail smtp,ssl,tls
|
| 3 |
+
Contributors: wpchill,silkalns,raldea89,giucu91,andylukak
|
| 4 |
+
License: GPLv3 or later
|
| 5 |
Requires at least: 2.7
|
| 6 |
+
Tested up to: 5.9
|
| 7 |
+
Stable tag: 1.2.3
|
| 8 |
|
| 9 |
WP SMTP can help us to send emails via SMTP instead of the PHP mail() function.
|
| 10 |
|
| 35 |
|
| 36 |
== Changelog ==
|
| 37 |
|
| 38 |
+
= 1.2.3 =
|
| 39 |
+
Fix auto loading require path
|
| 40 |
+
|
| 41 |
= 1.2.2 =
|
| 42 |
Just update info
|
| 43 |
|
wp-smtp.php
CHANGED
|
@@ -1,16 +1,32 @@
|
|
| 1 |
<?php
|
| 2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
| 3 |
|
| 4 |
-
|
| 5 |
-
Plugin Name: WP SMTP
|
| 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.
|
| 8 |
-
Author:
|
| 9 |
-
|
| 10 |
-
Domain
|
| 11 |
-
|
| 12 |
-
License
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
/*
|
| 16 |
* The plugin was originally created by BoLiQuan
|
|
@@ -23,7 +39,7 @@ define( 'WPSMTP_URL', plugins_url( '/', WPSMTP__FILE__ ) );
|
|
| 23 |
define( 'WPSMTP_ASSETS_PATH', WPSMTP_PATH . 'assets/' );
|
| 24 |
define( 'WPSMTP_ASSETS_URL', WPSMTP_URL . 'assets/' );
|
| 25 |
|
| 26 |
-
require_once 'vendor/autoload.php';
|
| 27 |
|
| 28 |
class WP_SMTP {
|
| 29 |
|
| 1 |
<?php
|
| 2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
| 3 |
|
| 4 |
+
/**
|
| 5 |
+
* Plugin Name: WP SMTP
|
| 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.3
|
| 8 |
+
* Author: WPChill
|
| 9 |
+
* Author URI: https://www.wpchill.com/
|
| 10 |
+
* Text Domain: wp-smtp
|
| 11 |
+
* Domain Path: /lang
|
| 12 |
+
* License: GPLv3 or Later
|
| 13 |
+
*
|
| 14 |
+
* Copyright 2012-2022 Yehuda Hassine yehudahas@gmail.com
|
| 15 |
+
* Copyright 2022-2022 WPChill heyyy@wpchill.com
|
| 16 |
+
*
|
| 17 |
+
* This program is free software; you can redistribute it and/or modify
|
| 18 |
+
* it under the terms of the GNU General Public License, version 3, as
|
| 19 |
+
* published by the Free Software Foundation.
|
| 20 |
+
*
|
| 21 |
+
* This program is distributed in the hope that it will be useful,
|
| 22 |
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 23 |
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 24 |
+
* GNU General Public License for more details.
|
| 25 |
+
*
|
| 26 |
+
* You should have received a copy of the GNU General Public License
|
| 27 |
+
* along with this program; if not, write to the Free Software
|
| 28 |
+
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
| 29 |
+
*/
|
| 30 |
|
| 31 |
/*
|
| 32 |
* The plugin was originally created by BoLiQuan
|
| 39 |
define( 'WPSMTP_ASSETS_PATH', WPSMTP_PATH . 'assets/' );
|
| 40 |
define( 'WPSMTP_ASSETS_URL', WPSMTP_URL . 'assets/' );
|
| 41 |
|
| 42 |
+
require_once __DIR__ . '/vendor/autoload.php';
|
| 43 |
|
| 44 |
class WP_SMTP {
|
| 45 |
|
