=== Plugin Name ===
Contributors: sitebase
Donate link: http://www.sitebase.be/
Tags: mailer, smtp, gmail, email, send, phpmailer, wp_mail, ssl
Requires at least: 3.0
Tested up to: 3.1
Stable tag: trunk

Configure a mail server you want to use for mailing in WordPress

== Description ==

Use a custom mail server to send mails in WP. This way you can also send emails when testing on your local server.
Make sure to follow us on [Twitter](http://twitter.com/Sitebase "Follow Sitebase on Twitter") for updates and more.

== Installation ==

This section describes how to install the plugin and get it working.

1. Upload `mailbase` to the `/wp-content/plugins/` directory
2. Open the file `/wp-content/plugins/mailbase/mailbase.php` and scroll down untill you find the private static options array.
Here you fill in the information to connect too your mail server you want to use.
2. Activate the plugin through the 'Plugins' menu in WordPress

== Frequently Asked Questions ==

= Can I use GMail as mail server? =

Yes, that is possible.
To do this you using the following configuration:
private static $_options = array (
	'mail_from' => 'email@mysite.com',
	'mail_from_name' => 'Your Name',
	'mailer' => 'smtp',
	'smtp_host' => 'smtp.gmail.com',
	'smtp_port' => '465',
	'smtp_secure' => 'ssl',
	'smtp_auth' => true,
	'smtp_user' => 'gmail email address',
	'smtp_pass' => 'gmail password'
);

You only need to change mail_from, mail_from_name, smtp_user and smtp_pass.

== Screenshots ==

1. This is a small plugin that uses clean OOP code.

== Changelog ==

= 0.1 =
* Initial version

