Email Log - Version 0.2

Version Description

Download this release

Release Info

Developer sudar
Plugin Icon 128x128 Email Log
Version 0.2
Comparing to
See all releases

Code changes from version 0.1 to 0.2

Files changed (2) hide show
  1. email-log.php +6 -5
  2. readme.txt +6 -2
email-log.php CHANGED
@@ -4,12 +4,13 @@ Plugin Name: Email Log
4
  Plugin URI: http://sudarmuthu.com/wordpress/email-log
5
  Description: Logs every email sent through WordPress. Compatiable with WPMU too.
6
  Author: Sudar
7
- Version: 0.1
8
  Author URI: http://sudarmuthu.com/
9
  Text Domain: email-log
10
 
11
  === RELEASE NOTES ===
12
  2009-10-08 – v0.1 – Initial Release
 
13
  */
14
 
15
  global $wpdb;
@@ -544,10 +545,10 @@ function smel_on_install() {
544
  $sql = "CREATE TABLE " . $smel_table_name . " (
545
  id mediumint(9) NOT NULL AUTO_INCREMENT,
546
  to_email VARCHAR(100) NOT NULL,
547
- subject VARCHAR(300) NOT NULL,
548
- message VARCHAR(5000) NOT NULL,
549
- headers VARCHAR(500) NOT NULL,
550
- attachments VARCHAR(500) NOT NULL,
551
  sent_date timestamp default CURRENT_TIMESTAMP,
552
  UNIQUE KEY id (id)
553
  );";
4
  Plugin URI: http://sudarmuthu.com/wordpress/email-log
5
  Description: Logs every email sent through WordPress. Compatiable with WPMU too.
6
  Author: Sudar
7
+ Version: 0.2
8
  Author URI: http://sudarmuthu.com/
9
  Text Domain: email-log
10
 
11
  === RELEASE NOTES ===
12
  2009-10-08 – v0.1 – Initial Release
13
+ 2009-10-15 – v0.2 – Added compatability for MySQL 4
14
  */
15
 
16
  global $wpdb;
545
  $sql = "CREATE TABLE " . $smel_table_name . " (
546
  id mediumint(9) NOT NULL AUTO_INCREMENT,
547
  to_email VARCHAR(100) NOT NULL,
548
+ subject VARCHAR(250) NOT NULL,
549
+ message TEXT NOT NULL,
550
+ headers TEXT NOT NULL,
551
+ attachments TEXT NOT NULL,
552
  sent_date timestamp default CURRENT_TIMESTAMP,
553
  UNIQUE KEY id (id)
554
  );";
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: sudar
3
  Tags: email, wpmu, wordpress-mu, log
4
  Requires at least: 2.8
5
  Tested up to: 2.8.4
6
- Stable tag: 0.1
7
 
8
  Logs every email sent through WordPress. Compatiable with WPMU too.
9
 
@@ -33,7 +33,7 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
33
 
34
  #### WordPress MU installations
35
 
36
- Extract the zip file and just drop the contents in the wp-content/plugins/ directory or mu-plugins directory of your WordPress MU installation and then activate the Plugin from Plugins page. You can activate it site wide or just for a single blog.
37
  == Screenshots ==
38
  1. The following screenshot shows how the logged emails will be displayed
39
 
@@ -47,6 +47,10 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
47
 
48
  * Initial Release
49
 
 
 
 
 
50
  ==Readme Generator==
51
 
52
  This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
3
  Tags: email, wpmu, wordpress-mu, log
4
  Requires at least: 2.8
5
  Tested up to: 2.8.4
6
+ Stable tag: 0.2
7
 
8
  Logs every email sent through WordPress. Compatiable with WPMU too.
9
 
33
 
34
  #### WordPress MU installations
35
 
36
+ Extract the zip file and drop the contents in the wp-content/plugins/ directory or mu-plugins directory of your WordPress MU installation and then activate the Plugin from Plugins page. You can activate it site wide or just for a single blog.
37
  == Screenshots ==
38
  1. The following screenshot shows how the logged emails will be displayed
39
 
47
 
48
  * Initial Release
49
 
50
+ ###v0.2 (2009-10-15)
51
+
52
+ * Added compatability for MySQL 4
53
+
54
  ==Readme Generator==
55
 
56
  This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.