doc update, bump version
Devin Austin [Thu, 25 Feb 2010 20:18:01 +0000 (20:18 +0000)]
lib/Catalyst/View/Email.pm
lib/Catalyst/View/Email/Template.pm

index 369bbfb..730e78e 100644 (file)
@@ -8,7 +8,7 @@ use Email::Sender::Simple qw/ sendmail /;
 use Email::MIME::Creator;
 extends 'Catalyst::View';
 
-our $VERSION = '0.25_02';
+our $VERSION = '0.26_01';
 $VERSION = eval $VERSION;
 
 has 'mailer' => (
@@ -98,7 +98,7 @@ In your app configuration:
                 mailer => 'SMTP',
                 # mailer_args is passed directly into Email::Sender::Simple 
                 mailer_args => {
-                    host     => 'smtp.example.com', # defaults to localhost
+                    Host     => 'smtp.example.com', # defaults to localhost
                     username => 'username',
                     password => 'password',
             }
index 6a3dacf..3a9947e 100644 (file)
@@ -5,7 +5,7 @@ use Carp;
 use Scalar::Util qw/ blessed /;
 extends 'Catalyst::View::Email';
 
-our $VERSION = '0.25_02';
+our $VERSION = '0.26_01';
 $VERSION = eval $VERSION;
 =head1 NAME