1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
package Email::Sender 2.601;
# ABSTRACT: a library for sending email
use Moo::Role;
requires 'send';
#pod =head1 SYNOPSIS
#pod
#pod my $message = Email::MIME->create( ... );
#pod # produce an Email::Abstract compatible message object,
#pod # e.g. produced by Email::Simple, Email::MIME, Email::Stuff
#pod
#pod use Email::Sender::Simple qw(sendmail);
#pod use Email::Sender::Transport::SMTP qw();
#pod use Try::Tiny;
#pod
#pod try {
#pod sendmail(
#pod $message,
#pod {
#pod from => $SMTP_ENVELOPE_FROM_ADDRESS,
#pod transport => Email::Sender::Transport::SMTP->new({
#pod host => $SMTP_HOSTNAME,
#pod port => $SMTP_PORT,
#pod })
#pod }
#pod );
#pod } catch {
#pod warn "sending failed: $_";
#pod };
#pod
#pod =head1 OVERVIEW
#pod
#pod Email::Sender replaces the old and sometimes problematic Email::Send library,
#pod which did a decent job at handling very simple email sending tasks, but was not
#pod suitable for serious use, for a variety of reasons.
#pod
#pod Most users will be able to use L<Email::Sender::Simple> to send mail. Users
#pod with more specific needs should look at the available Email::Sender::Transport
#pod classes.
#pod
#pod Documentation may be found in L<Email::Sender::Manual>, and new users should
#pod start with L<Email::Sender::Manual::QuickStart>.
#pod
#pod =head1 IMPLEMENTING
#pod
#pod Email::Sender itself is a Moo role. Any class that implements Email::Sender
#pod is required to provide a method called C<send>. This method should accept any
#pod input that can be understood by L<Email::Abstract>, followed by a hashref
#pod containing C<to> and C<from> arguments to be used as the envelope. The method
#pod should return an L<Email::Sender::Success> object on success or throw an
#pod L<Email::Sender::Failure> on failure.
#pod
#pod =cut
no Moo::Role;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Email::Sender - a library for sending email
=head1 VERSION
version 2.601
=head1 SYNOPSIS
my $message = Email::MIME->create( ... );
# produce an Email::Abstract compatible message object,
# e.g. produced by Email::Simple, Email::MIME, Email::Stuff
use Email::Sender::Simple qw(sendmail);
use Email::Sender::Transport::SMTP qw();
use Try::Tiny;
try {
sendmail(
$message,
{
from => $SMTP_ENVELOPE_FROM_ADDRESS,
transport => Email::Sender::Transport::SMTP->new({
host => $SMTP_HOSTNAME,
port => $SMTP_PORT,
})
}
);
} catch {
warn "sending failed: $_";
};
=head1 OVERVIEW
Email::Sender replaces the old and sometimes problematic Email::Send library,
which did a decent job at handling very simple email sending tasks, but was not
suitable for serious use, for a variety of reasons.
Most users will be able to use L<Email::Sender::Simple> to send mail. Users
with more specific needs should look at the available Email::Sender::Transport
classes.
Documentation may be found in L<Email::Sender::Manual>, and new users should
start with L<Email::Sender::Manual::QuickStart>.
=head1 PERL VERSION
This library should run on perls released even a long time ago. It should
work on any version of perl released in the last five years.
Although it may work on older versions of perl, no guarantee is made that the
minimum required version will not be increased. The version may be increased
for any reason, and there is no promise that patches will be accepted to
lower the minimum required perl.
=head1 IMPLEMENTING
Email::Sender itself is a Moo role. Any class that implements Email::Sender
is required to provide a method called C<send>. This method should accept any
input that can be understood by L<Email::Abstract>, followed by a hashref
containing C<to> and C<from> arguments to be used as the envelope. The method
should return an L<Email::Sender::Success> object on success or throw an
L<Email::Sender::Failure> on failure.
=head1 AUTHOR
Ricardo Signes <cpan@semiotic.systems>
=head1 CONTRIBUTORS
=for stopwords Alex Efros Aristotle Pagaltzis Bernhard Graf Christian Walde David Golden Steinbrunner Erik Huelsmann Hans Dieter Pearcey HIROSE Masaaki James E Keenan Justin Hunter Karen Etheridge Kenichi Ishigaki kga Kris Matthews Marc Bradshaw Ricardo Signes Stefan Hornburg (Racke) William Blunn
=over 4
=item *
Alex Efros <powerman@powerman.name>
=item *
Aristotle Pagaltzis <pagaltzis@gmx.de>
=item *
Bernhard Graf <augensalat@gmail.com>
=item *
Christian Walde <walde.christian@googlemail.com>
=item *
David Golden <dagolden@cpan.org>
=item *
David Steinbrunner <dsteinbrunner@pobox.com>
=item *
Erik Huelsmann <ehuels@gmail.com>
=item *
Hans Dieter Pearcey <hdp@cpan.org>
=item *
HIROSE Masaaki <hirose31@gmail.com>
=item *
James E Keenan <jkeenan@cpan.org>
=item *
Justin Hunter <justin.d.hunter@gmail.com>
=item *
Karen Etheridge <ether@cpan.org>
=item *
Kenichi Ishigaki <ishigaki@cpan.org>
=item *
kga <watrty@gmail.com>
=item *
Kris Matthews <kris@tigerlms.com>
=item *
Marc Bradshaw <marc@marcbradshaw.net>
=item *
Ricardo Signes <rjbs@semiotic.systems>
=item *
Ricardo Signes <rjbs@users.noreply.github.com>
=item *
Stefan Hornburg (Racke) <racke@linuxia.de>
=item *
William Blunn <zgpmax@cpan.org>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2024 by Ricardo Signes.
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
|