From 5972196ee5ac7deb2291814bd1c278ce69e4b32a Mon Sep 17 00:00:00 2001 From: Olivier Thauvin Date: Tue, 19 Oct 2010 22:50:58 +0000 Subject: - ask confirm by mail on host information update to avoid spam --- lib/MGA/Mirrors/View/Mail.pm | 59 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 lib/MGA/Mirrors/View/Mail.pm (limited to 'lib/MGA/Mirrors/View/Mail.pm') diff --git a/lib/MGA/Mirrors/View/Mail.pm b/lib/MGA/Mirrors/View/Mail.pm new file mode 100644 index 0000000..0c694be --- /dev/null +++ b/lib/MGA/Mirrors/View/Mail.pm @@ -0,0 +1,59 @@ +package MGA::Mirrors::View::Mail; + +use strict; +use base 'Catalyst::View::TT'; +use Mail::Mailer; +use MGA::Mirrors; + +__PACKAGE__->config( + TEMPLATE_EXTENSION => '.tt', + INCLUDE_PATH => MGA::Mirrors->path_to( 'root', 'mail' ), +); + +=head1 NAME + +MGA::Mirrors::View::TT - TT View for MGA::Mirrors + +=head1 DESCRIPTION + +TT View for MGA::Mirrors. + +=cut + +sub render { + my ($self, $c, $template, $args) = @_; + + $ENV{MAILADDRESS} = $args->{From}; + my $mailer = new Mail::Mailer 'smtp', Server => (MGA::Mirrors->config->{smtp} || 'localhost'); + eval { + $mailer->open({ + (map { $_ => $args->{$_} } grep { $_ !~ /^(mail)$/ } keys %{ $args || {}}), + 'Content-Type' => 'text/plain; charset=UTF-8; format=flowed', + 'Content-Transfer-Encoding' => '8bit', + 'X-MGA-Mirrors-version' => $MGA::Mirrors::DB::VERSION, + }); + print $mailer + Catalyst::View::TT::render($self, $c, $template, { %{ $args->{mail} || {} }, c => $c }); + $mailer->close; + }; + if ($@) { + $c->stash->{mail_error} = $@; + } +} + +=head1 SEE ALSO + +L + +=head1 AUTHOR + +Thauvin Olivier + +=head1 LICENSE + +This library is free software, you can redistribute it and/or modify +it under the same terms as Perl itself or CeCILL. + +=cut + +1; -- cgit v1.2.1