Version Description
Download this release
Release Info
Developer | wpchill |
Plugin | Check Email |
Version | 0.6.2 |
Comparing to | |
See all releases |
Code changes from version 0.6.1 to 0.6.2
- check-email.php +5 -3
- class-check-email-review.php +4 -0
- readme.txt +4 -3
check-email.php
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
/*
|
3 |
* Plugin Name: Check Email
|
4 |
* Description: Check email allows you to test if your WordPress installation is sending emails correctly.
|
5 |
-
* Author:
|
6 |
-
* Version: 0.6.
|
7 |
-
* Author URI: https://
|
8 |
* License: GPLv3 or later
|
9 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
* Requires PHP: 5.6
|
@@ -13,10 +13,12 @@
|
|
13 |
*
|
14 |
* Copyright 2015-2020 Chris Taylor chris@stillbreathing.co.uk
|
15 |
* Copyright 2020 MachoThemes office@machothemes.com
|
|
|
16 |
*
|
17 |
* NOTE:
|
18 |
* Chris Taylor transferred ownership rights on: 2020-06-19 07:52:03 GMT when ownership was handed over to MachoThemes
|
19 |
* The MachoThemes ownership period started on: 2020-06-19 07:52:03 GMT
|
|
|
20 |
*
|
21 |
* This program is free software; you can redistribute it and/or modify
|
22 |
* it under the terms of the GNU General Public License, version 3, as
|
2 |
/*
|
3 |
* Plugin Name: Check Email
|
4 |
* Description: Check email allows you to test if your WordPress installation is sending emails correctly.
|
5 |
+
* Author: WPChill
|
6 |
+
* Version: 0.6.2
|
7 |
+
* Author URI: https://wpchill.com
|
8 |
* License: GPLv3 or later
|
9 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
* Requires PHP: 5.6
|
13 |
*
|
14 |
* Copyright 2015-2020 Chris Taylor chris@stillbreathing.co.uk
|
15 |
* Copyright 2020 MachoThemes office@machothemes.com
|
16 |
+
* Copyright 2020 WPChill heyyy@wpchill.com
|
17 |
*
|
18 |
* NOTE:
|
19 |
* Chris Taylor transferred ownership rights on: 2020-06-19 07:52:03 GMT when ownership was handed over to MachoThemes
|
20 |
* The MachoThemes ownership period started on: 2020-06-19 07:52:03 GMT
|
21 |
+
* MachoThemes transferred ownership to WPChill on 5th of November, 2020. WPChill is a restructure and rebrand of MachoThemes.
|
22 |
*
|
23 |
* This program is free software; you can redistribute it and/or modify
|
24 |
* it under the terms of the GNU General Public License, version 3, as
|
class-check-email-review.php
CHANGED
@@ -118,6 +118,10 @@ class Check_Email_Review {
|
|
118 |
<script type="text/javascript">
|
119 |
jQuery( document ).ready( function( $ ){
|
120 |
|
|
|
|
|
|
|
|
|
121 |
$( '.epsilon-review-button' ).click( function( evt ){
|
122 |
var href = $(this).attr('href'),
|
123 |
id = $(this).attr('id');
|
118 |
<script type="text/javascript">
|
119 |
jQuery( document ).ready( function( $ ){
|
120 |
|
121 |
+
$( '#check-email-epsilon-review-notice button' ).click( function(){
|
122 |
+
$( '#epsilon-no-rate' ).trigger( 'click' );
|
123 |
+
});
|
124 |
+
|
125 |
$( '.epsilon-review-button' ).click( function( evt ){
|
126 |
var href = $(this).attr('href'),
|
127 |
id = $(this).attr('id');
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Check Email ===
|
2 |
-
Contributors:
|
3 |
Tags: check, test, email, smtp, pop, send, delivery
|
4 |
-
Requires at least: 5.
|
5 |
Tested up to: 5.5
|
6 |
-
Stable tag: 0.6.
|
7 |
|
8 |
Check email allows you to test if your WordPress installation is sending emails correctly by sending a test email to an address of your choice. Allows overriding of email headers and carbon copying to another address.
|
9 |
|
@@ -28,6 +28,7 @@ The link to access the tool is in the "Tools" menu.
|
|
28 |
Someone using one of my other plugins had trouble with emails not being sent. I knocked this together to help him (and anyone else).
|
29 |
|
30 |
== Changelog ==
|
|
|
31 |
0.6.1 Added feedback form. Improved CSS backend.
|
32 |
0.6.0 Fixed loopback error.
|
33 |
0.5.7 Added support for the wp_mail_from filter
|
1 |
=== Check Email ===
|
2 |
+
Contributors: wpchill, silkalns, giucu91
|
3 |
Tags: check, test, email, smtp, pop, send, delivery
|
4 |
+
Requires at least: 5.2
|
5 |
Tested up to: 5.5
|
6 |
+
Stable tag: 0.6.2
|
7 |
|
8 |
Check email allows you to test if your WordPress installation is sending emails correctly by sending a test email to an address of your choice. Allows overriding of email headers and carbon copying to another address.
|
9 |
|
28 |
Someone using one of my other plugins had trouble with emails not being sent. I knocked this together to help him (and anyone else).
|
29 |
|
30 |
== Changelog ==
|
31 |
+
0.6.2 Fixed dismissable button for the review
|
32 |
0.6.1 Added feedback form. Improved CSS backend.
|
33 |
0.6.0 Fixed loopback error.
|
34 |
0.5.7 Added support for the wp_mail_from filter
|