-
-
04 Jul 2021 17:28:26 UTC
- Distribution: Email-Sender
- Module version: 2.500
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (20)
- Testers (1910 / 7 / 5)
- Kwalitee
Bus factor: 1- 73.05% Coverage
- License: perl_5
- Perl: v5.12.0
- Activity
24 month- Tools
- Download (51.36KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 18 contributors-
Ricardo Signes
-
Alex Efros
-
Aristotle Pagaltzis
-
Bernhard Graf
-
Christian Walde
-
David Golden
-
David Steinbrunner
-
Hans Dieter Pearcey
-
HIROSE Masaaki
-
James E Keenan
-
Justin Hunter
-
Karen Etheridge
-
Kenichi Ishigaki
-
kga
-
Kris Matthews
-
Marc Bradshaw
-
Stefan Hornburg (Racke)
-
William Blunn
- Dependencies
- Carp
- Email::Abstract
- Email::Address
- Email::Simple
- Fcntl
- File::Basename
- File::Path
- File::Spec
- IO::File
- IO::Handle
- List::Util
- Module::Runtime
- Moo
- Moo::Role
- MooX::Types::MooseLike
- MooX::Types::MooseLike::Base
- Net::SMTP
- Scalar::Util
- Sub::Exporter
- Sub::Exporter::Util
- Sys::Hostname
- Throwable::Error
- Try::Tiny
- strict
- utf8
- warnings
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Email::Sender - a library for sending email
VERSION
version 2.500
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: $_"; };
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 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 Email::Sender::Manual, and new users should start with Email::Sender::Manual::QuickStart.
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.
IMPLEMENTING
Email::Sender itself is a Moo role. Any class that implements Email::Sender is required to provide a method called
send
. This method should accept any input that can be understood by Email::Abstract, followed by a hashref containingto
andfrom
arguments to be used as the envelope. The method should return an Email::Sender::Success object on success or throw an Email::Sender::Failure on failure.AUTHOR
Ricardo Signes <rjbs@semiotic.systems>
CONTRIBUTORS
Alex Efros <powerman@powerman.name>
Aristotle Pagaltzis <pagaltzis@gmx.de>
Bernhard Graf <augensalat@gmail.com>
Christian Walde <walde.christian@googlemail.com>
David Golden <dagolden@cpan.org>
David Steinbrunner <dsteinbrunner@pobox.com>
Hans Dieter Pearcey <hdp@cpan.org>
HIROSE Masaaki <hirose31@gmail.com>
James E Keenan <jkeenan@cpan.org>
Justin Hunter <justin.d.hunter@gmail.com>
Karen Etheridge <ether@cpan.org>
Kenichi Ishigaki <ishigaki@cpan.org>
kga <watrty@gmail.com>
Kris Matthews <kris@tigerlms.com>
Marc Bradshaw <marc@marcbradshaw.net>
Stefan Hornburg (Racke) <racke@linuxia.de>
William Blunn <zgpmax@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2021 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.
Module Install Instructions
To install Email::Sender, copy and paste the appropriate command in to your terminal.
cpanm Email::Sender
perl -MCPAN -e shell install Email::Sender
For more information on module installation, please visit the detailed CPAN module installation guide.