WordPress Email Marketing Plugin – WP Email Capture - Version 1.1

Version Description

Download this release

Release Info

Developer rhyswynne
Plugin Icon 128x128 WordPress Email Marketing Plugin – WP Email Capture
Version 1.1
Comparing to
See all releases

Code changes from version 2.0 to 1.1

Files changed (5) hide show
  1. readme.txt +17 -56
  2. screenshot-1.jpg +0 -0
  3. screenshot-2.jpg +0 -0
  4. screenshot-3.jpg +0 -0
  5. wp-email-capture.php +1 -1
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === WP Email Capture ===
2
  Tags: email, marketing, capture, form, affiliates, mailing lists, email marketing, widget ready
3
- Requires at least: 3.0
4
- Tested up to: 3.0.1
5
- Version: 2.0
6
- Stable tag: 2.0
7
  Contributors: rhyswynne
8
  Donate link: http://www.gospelrhys.co.uk/donations/
9
 
@@ -37,14 +37,14 @@ After having these, please then fill in the settings in the "Settings > WP Email
37
 
38
  The form can be inserted into the site at any location. However, to put the form anywhere, insert the following code into your template
39
 
40
- `<?php if (function_exists('wp_email_capture_form')) { wp_email_capture_form(); } ?>`
41
 
42
- If you want to insert the form within a page, insert into any page the string `[wp_email_capture_form]`. It will be replaced with a simple form.
43
 
44
  == Stylings ==
45
- To style your form, you need to add to your CSS file the following ID declarations. `wp_email_capture` is for sidebar & template widgets, `wp_email_capture_2` is for on page forms.
46
 
47
- `#wp_email_capture
48
  {
49
 
50
  }
@@ -72,7 +72,7 @@ To style your form, you need to add to your CSS file the following ID declaratio
72
  #wp_email_capture_2 input
73
  {
74
 
75
- }`
76
 
77
  == Screenshots ==
78
  1. It's appearance within the template
@@ -84,15 +84,6 @@ To style your form, you need to add to your CSS file the following ID declaratio
84
  = Does this piece of software send out email? =
85
  No. I feel that to do so would be counter productive, as sending out email could have a detrimental effect on your server. There are a number of services we recommend, such as Aweber, to send out lists built on WP Email Capture.
86
 
87
- = Does it work with Wordpress MU? =
88
- This plugin is unsupported for Wordpress MU. Some people have reported success in using it. Others haven't. I have been unable to figure out why (I've been unable to get it working for Wordpress MU).
89
-
90
- = Does it work with [theme_name]? =
91
- This plugin does use widgets, so probably yes :)
92
-
93
- = How do I include the name in my emails I send to people? =
94
- Wherever you put in %NAME% (spelt exactly like that, uppercase as well), it will be replaced with the name given by the user.
95
-
96
  == Bugs/Suggestions ==
97
  Please report any bugs to me (rhys@gospelrhys.co.uk)
98
 
@@ -102,61 +93,31 @@ To donate to this plugin, please visit:
102
  http://www.gospelrhys.co.uk/donations
103
 
104
  == Change Log ==
105
- = 2.0 (3/10/10) =
106
- * Switched functions to use the non depreciated functions
107
- * Compatible with Spam Free
108
- * Added a "Delete entire list" button in Wordpress.
109
-
110
- = 1.9 (20/01/10) =
111
- * Fixed a small bug that resulted in the display for [The plugin does not have a valid header.]
112
- * Fixed a small phpmail bug
113
-
114
- = 1.8.1 (13/01/10) =
115
- * Included more information in sent mail including IP, Date & Referral Page
116
-
117
- = 1.6 (18/10/09) =
118
- * You can now delete people from the confirmed members list (requested update!)
119
-
120
- = 1.5 (04/10/09) =
121
- * Fixed small error on the error checking form.
122
-
123
- = 1.4 (03/10/09) =
124
- * Added a check for duplicate emails.
125
-
126
- = 1.3 (30/09/09) =
127
- * Added a new feature where you can mention the name of the recipient of the email within the email by using the %NAME% string.
128
- * Better default title & text for the WP Email Capture Widget.
129
- * Fixed a bug that dropped the last character of the "From" name.
130
-
131
- = 1.2 (27/09/09) =
132
- * Fixed errors with the programme when using non pretty permalinks (they now work now)
133
- * Compatible with windows based PHP configurations (1.1 introduced a function that didn't work on windows boxes).
134
-
135
- = 1.1 revision 2 (24/09/09) =
136
  * Fixed compatability issue with All in One SEO.
137
  * Blogs which are on a subdomain now can use the plugin (http://www.domian.com/wordpress/)
138
 
139
- = 1.1 revision 1 (23/09/09) =
140
  * Fixed small upgrade bug
141
 
142
- = 1.1 (22/09/09) =
143
  * Fixed short tag problem in tempdata.php
144
  * Emails that are not valid emails aren't processed
145
 
146
- = 1.0 RC 1 (17/09/09) =
147
  * First Release!
148
  * Dashboard Widget added.
149
 
150
- = 0.4 (14/09/09) =
151
  * Used more secure internal wp_mail class for sending out mail
152
  * Implemented [wp_email_form] class for implementing plugin on form
153
 
154
- = 0.3 (12/09/09) =
155
  * Switch to headers, rather than meta refreshes for updating the page
156
 
157
- = 0.2 (09/09/09) =
158
  * Fixed small error in the plugin when using permalinks
159
  * Implemented more security to the plugin
160
 
161
- = 0.1 (07/09/09) =
162
  * Plugin Launched
1
  === WP Email Capture ===
2
  Tags: email, marketing, capture, form, affiliates, mailing lists, email marketing, widget ready
3
+ Requires at least: 2.8
4
+ Tested up to: 2.8.4
5
+ Version: 1.1 revision 2
6
+ Stable tag: 1.1 revision 2
7
  Contributors: rhyswynne
8
  Donate link: http://www.gospelrhys.co.uk/donations/
9
 
37
 
38
  The form can be inserted into the site at any location. However, to put the form anywhere, insert the following code into your template
39
 
40
+ <?php if (function_exists('wp_email_capture_form')) { wp_email_capture_form(); } ?>
41
 
42
+ If you want to insert the form within a page, insert into any page the string [wp_email_capture_form]. It will be replaced with a simple form.
43
 
44
  == Stylings ==
45
+ To style your form, you need to add to your CSS file the following ID declarations. "wp_email_capture" is for sidebar & template widgets, "wp_email_capture_2" is for on page forms.
46
 
47
+ #wp_email_capture
48
  {
49
 
50
  }
72
  #wp_email_capture_2 input
73
  {
74
 
75
+ }
76
 
77
  == Screenshots ==
78
  1. It's appearance within the template
84
  = Does this piece of software send out email? =
85
  No. I feel that to do so would be counter productive, as sending out email could have a detrimental effect on your server. There are a number of services we recommend, such as Aweber, to send out lists built on WP Email Capture.
86
 
 
 
 
 
 
 
 
 
 
87
  == Bugs/Suggestions ==
88
  Please report any bugs to me (rhys@gospelrhys.co.uk)
89
 
93
  http://www.gospelrhys.co.uk/donations
94
 
95
  == Change Log ==
96
+ 1.1 revision 2 (24/09/09)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  * Fixed compatability issue with All in One SEO.
98
  * Blogs which are on a subdomain now can use the plugin (http://www.domian.com/wordpress/)
99
 
100
+ 1.1 revision 1 (23/09/09)
101
  * Fixed small upgrade bug
102
 
103
+ 1.1 (22/09/09)
104
  * Fixed short tag problem in tempdata.php
105
  * Emails that are not valid emails aren't processed
106
 
107
+ 1.0 RC 1 (17/09/09)
108
  * First Release!
109
  * Dashboard Widget added.
110
 
111
+ 0.4 (14/09/09)
112
  * Used more secure internal wp_mail class for sending out mail
113
  * Implemented [wp_email_form] class for implementing plugin on form
114
 
115
+ 0.3 (12/09/09)
116
  * Switch to headers, rather than meta refreshes for updating the page
117
 
118
+ 0.2 (09/09/09)
119
  * Fixed small error in the plugin when using permalinks
120
  * Implemented more security to the plugin
121
 
122
+ 0.1 (07/09/09)
123
  * Plugin Launched
screenshot-1.jpg ADDED
Binary file
screenshot-2.jpg ADDED
Binary file
screenshot-3.jpg ADDED
Binary file
wp-email-capture.php CHANGED
@@ -8,7 +8,7 @@ Plugin URI: http://www.gospelrhys.co.uk/plugins/wordpress-plugins/wordpress-emai
8
 
9
  Description: Captures email addresses for insertion into software such as <a href="http://www.gospelrhys.co.uk/go/aweber.php" title="Email Marketing">Aweber</a> or <a href="http://www.gospelrhys.co.uk/go/mailchimp.php">Mailchimp</a>
10
 
11
- Version: 2.0
12
 
13
  Author: Rhys Wynne
14
 
8
 
9
  Description: Captures email addresses for insertion into software such as <a href="http://www.gospelrhys.co.uk/go/aweber.php" title="Email Marketing">Aweber</a> or <a href="http://www.gospelrhys.co.uk/go/mailchimp.php">Mailchimp</a>
10
 
11
+ Version: 1.1 revision 2
12
 
13
  Author: Rhys Wynne
14