Version Description
- Modified readme.
Download this release
Release Info
Developer | No3x |
Plugin | WP Mail Logging |
Version | 1.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.1
- .svnignore +6 -0
- assets/images/banner/banner-772x250.png +0 -0
- assets/images/banner/banner-772x250.psd +0 -0
- readme.txt +17 -4
- wp-mail-logging.php +1 -1
.svnignore
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
bin
|
2 |
+
tests
|
3 |
+
.svnignore
|
4 |
+
.travis.yml
|
5 |
+
phpunit.xml
|
6 |
+
README.md
|
assets/images/banner/banner-772x250.png
ADDED
Binary file
|
assets/images/banner/banner-772x250.psd
ADDED
Binary file
|
readme.txt
CHANGED
@@ -1,18 +1,29 @@
|
|
1 |
=== WP Mail Logging ===
|
2 |
Contributors: No3x
|
3 |
-
Donate link:
|
4 |
-
Tags:
|
5 |
License: GPLv3
|
6 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
7 |
Requires at least: 3.0
|
8 |
Tested up to: 3.9.1
|
9 |
-
Stable tag: 1.
|
10 |
|
11 |
Logs each email sent by WordPress.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
Logs each email sent by WordPress.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
== Installation ==
|
18 |
Just install and activate wp-mail-logging. The plugin will do the work for you! You can list all logged mails on the plugin site.
|
@@ -27,6 +38,8 @@ Just install and activate wp-mail-logging. The plugin will do the work for you!
|
|
27 |
|
28 |
|
29 |
== Changelog ==
|
|
|
|
|
30 |
|
31 |
= 1.0 =
|
32 |
- Initial Revision
|
1 |
=== WP Mail Logging ===
|
2 |
Contributors: No3x
|
3 |
+
Donate link: http://no3x.de/web/donate
|
4 |
+
Tags: mail, email, log, logging, list, store, collect, view
|
5 |
License: GPLv3
|
6 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
7 |
Requires at least: 3.0
|
8 |
Tested up to: 3.9.1
|
9 |
+
Stable tag: 1.1
|
10 |
|
11 |
Logs each email sent by WordPress.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Logs each email sent by WordPress. This can be useful if you don't want to lose such mail contents. It can also be useful for debugging purposes while development.
|
16 |
+
|
17 |
+
Features of the plugin include:
|
18 |
+
|
19 |
+
* Zero-configuration - just install and enjoy
|
20 |
+
* Complete list of sent mails
|
21 |
+
|
22 |
+
**Follow this plugin on [GitHub](https://github.com/No3x/wp-mail-logging)**
|
23 |
+
|
24 |
+
**If you find an issue, let us know in the [Tracker](https://github.com/No3x/wp-mail-logging/issues?state=open)**
|
25 |
+
|
26 |
+
**Provide feedback and suggestions on [enhancements](https://github.com/No3x/wp-mail-logging/issues?direction=desc&labels=Enhancement%2Cenhancement&page=1&sort=created&state=open)**
|
27 |
|
28 |
== Installation ==
|
29 |
Just install and activate wp-mail-logging. The plugin will do the work for you! You can list all logged mails on the plugin site.
|
38 |
|
39 |
|
40 |
== Changelog ==
|
41 |
+
= 1.1 =
|
42 |
+
- Modified readme.
|
43 |
|
44 |
= 1.0 =
|
45 |
- Initial Revision
|
wp-mail-logging.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: WP Mail Logging
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-mail-logging/
|
5 |
-
Version:
|
6 |
Author: Christian Zöller
|
7 |
Author URI: http://no3x.de/
|
8 |
Description: Logs each email sent by WordPress.
|
2 |
/*
|
3 |
Plugin Name: WP Mail Logging
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-mail-logging/
|
5 |
+
Version: 1.1
|
6 |
Author: Christian Zöller
|
7 |
Author URI: http://no3x.de/
|
8 |
Description: Logs each email sent by WordPress.
|