=== Mad Mimi for WordPress === Tags: madmimi, mad mimi, widget, newsletter, form, signup, newsletter widget, newsletter plugin, newsletters, emails, email, email newsletter form, newsletter form, newsletter signup, email widget, email marketing, newsletter, form, signup Requires at least: 2.8 Tested up to: 2.9.2 Stable tag: trunk Contributors: katzwebdesign Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=zackkatz%40gmail%2ecom&item_name=Mad%20Mimi%20for%20WordPress&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8 Add a Mad Mimi signup form to your WordPress website in the content or the sidebar. == Description ==

Add Mad Mimi signup form to your WordPress website.

This plugin adds a newsletter signup form to your website in the content and the sidebar of your site.

Plugin Features:

* Select which forms users subscribe to * Unlimited signup forms for any number of email lists * Choose to include a number of fields in the form, including: * Email * Name * Phone * Company * Title * Address * City * State * ZIP * Country Note: this plugin requires a Mad Mimi account. Sign up for a free account here. == Installation == 1. Upload plugin files to your plugins folder, or install using WordPress' built-in Add New Plugin installer 1. Activate the plugin 1. Go to the plugin settings page (under Settings > Mad Mimi) 1. Enter in your Mad Mimi Username (the account's email address) and the API key. (Find your API Key at https://madmimi.com/user/edit) 1. Click Save Changes. 1. If the settings are correct, a link will appear to the widgets page (Appearance > Widgets). Follow it. 1. Drag the Mad Mimi Signup Form widget to a sidebar, and configure the form. 1. If you want the form to be embedded in content, instead of shown in the sidebar, check the checkbox for "Do not display widget in sidebar", then follow the instructions for inserting the shortcode into your content where you would like the form to be displayed. == Screenshots == 1. How the widget appears in the Widgets panel 2. How the signup form appears in the default WP sidebar. 3. How submissions appear on the Mad Mimi Audience page == Frequently Asked Questions == = Requires PHP5 for All Features = The plugin requires PHP5 for list management functionality. If your web host does not support PHP5, please contact your host and see if they can upgrade your PHP version; generally this is done at no cost. = What is the plugin license? = * This plugin is released under a GPL license. = What is Mad Mimi? = Mad Mimi is the easiest email marketing tool out there. It's built from the ground up to be simple and usable. Learn more about Mad Mimi. = Do I need a Mad Mimi account to use this plugin? = Yes, this plugin requires a Mad Mimi account. Sign up for a free account here. = How do I use the new `apply_filters()` functionality? (Added 1.1) = If you want to change some code in the widget, you can use the WordPress `add_filter()` function to achieve this. You can add code to your theme's `functions.php` file that will modify the widget output. Here's an example:
function my_example_function($widget) { 
	// The $widget variable is the output of the widget
	// This will replace 'this word' with 'that word' in the widget output.
	$widget = str_replace('this word', 'that word', $widget);
	// Make sure to return the $widget variable, or it won't work!
	return $widget;
}
add_filter('mad_mimi_signup_form', 'my_example_function');
You can also modify the error message by hooking into `mad_mimi_signup_form_error` in a similar manner. == Changelog == = 1.2 = * Added support for PHP4 servers. The plugin won't have the user list management functionality, but everything else should work. * Fixed potential error when submitting a form without a selected user list * Added form id to input id's to allow for better `