bcc: POD corrections thanks to Lance Brown <lance@bearcircle.net>
Jay Hannah [Thu, 12 Feb 2009 20:09:03 +0000 (20:09 +0000)]
Changes
lib/Catalyst/View/Email.pm

diff --git a/Changes b/Changes
index dd7b575..2f422a6 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::View::Email.
 
+0.13    2009-02-22 14:06:00
+        - bcc: POD corrections thanks to Lance Brown <lance@bearcircle.net>
+
 0.12    2009-01-22 06:52:00
         - Fixing tests for new versions of MIME::Creator
         - Better structure of the code so that ::Template can also handle
index 471c882..cf89ad1 100644 (file)
@@ -12,7 +12,7 @@ use Email::MIME::Creator;
 
 use parent 'Catalyst::View';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 __PACKAGE__->mk_accessors(qw/ mailer /);
 
@@ -90,7 +90,7 @@ Sending email is just filling the stash and forwarding to the view:
         $c->stash->{email} = {
             to      => 'jshirley@gmail.com',
             cc      => 'abraxxa@cpan.org',
-            bcc     => [ qw/hidden@secret.com hidden2@foobar.com/ ],
+            bcc     => 'hidden@secret.com, hidden2@foobar.com',
             from    => 'no-reply@foobar.com',
             subject => 'I am a Catalyst generated email',
             body    => 'Body Body Body',
@@ -110,7 +110,7 @@ contained ones.
         header => [
             To      => 'jshirley@gmail.com',
             Cc      => 'abraxxa@cpan.org',
-            Bcc     => [ qw/hidden@secret.com hidden2@foobar.com/ ],
+            Bcc     => 'hidden@secret.com, hidden2@foobar.com',
             From    => 'no-reply@foobar.com',
             Subject => 'Note the capitalization differences',
         ],
@@ -368,6 +368,8 @@ Simon Elliott <cpan@browsing.co.uk>
 
 Roman Filippov
 
+Lance Brown <lance@bearcircle.net>
+
 =head1 LICENSE
 
 This library is free software, you can redistribute it and/or modify it under