[Catalyst-commits] r9286 - in Catalyst-View-Email/0.10: .
lib/Catalyst/View
jhannah at dev.catalyst.perl.org
jhannah at dev.catalyst.perl.org
Thu Feb 12 20:09:03 GMT 2009
Author: jhannah
Date: 2009-02-12 20:09:03 +0000 (Thu, 12 Feb 2009)
New Revision: 9286
Modified:
Catalyst-View-Email/0.10/Changes
Catalyst-View-Email/0.10/lib/Catalyst/View/Email.pm
Log:
bcc: POD corrections thanks to Lance Brown <lance at bearcircle.net>
Modified: Catalyst-View-Email/0.10/Changes
===================================================================
--- Catalyst-View-Email/0.10/Changes 2009-02-12 09:58:01 UTC (rev 9285)
+++ Catalyst-View-Email/0.10/Changes 2009-02-12 20:09:03 UTC (rev 9286)
@@ -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 at 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
Modified: Catalyst-View-Email/0.10/lib/Catalyst/View/Email.pm
===================================================================
--- Catalyst-View-Email/0.10/lib/Catalyst/View/Email.pm 2009-02-12 09:58:01 UTC (rev 9285)
+++ Catalyst-View-Email/0.10/lib/Catalyst/View/Email.pm 2009-02-12 20:09:03 UTC (rev 9286)
@@ -12,7 +12,7 @@
use parent 'Catalyst::View';
-our $VERSION = '0.12';
+our $VERSION = '0.13';
__PACKAGE__->mk_accessors(qw/ mailer /);
@@ -90,7 +90,7 @@
$c->stash->{email} = {
to => 'jshirley at gmail.com',
cc => 'abraxxa at cpan.org',
- bcc => [ qw/hidden at secret.com hidden2 at foobar.com/ ],
+ bcc => 'hidden at secret.com, hidden2 at foobar.com',
from => 'no-reply at foobar.com',
subject => 'I am a Catalyst generated email',
body => 'Body Body Body',
@@ -110,7 +110,7 @@
header => [
To => 'jshirley at gmail.com',
Cc => 'abraxxa at cpan.org',
- Bcc => [ qw/hidden at secret.com hidden2 at foobar.com/ ],
+ Bcc => 'hidden at secret.com, hidden2 at foobar.com',
From => 'no-reply at foobar.com',
Subject => 'Note the capitalization differences',
],
@@ -368,6 +368,8 @@
Roman Filippov
+Lance Brown <lance at bearcircle.net>
+
=head1 LICENSE
This library is free software, you can redistribute it and/or modify it under
More information about the Catalyst-commits
mailing list