Email::Simple
Email::Simple
This is my attempt at porting Email::Simple from Perl 5 to Raku (mostly just because I can)
Example Usage
use Email::Simple;
my $eml = Email::Simple.new($raw-mail-text);
say $eml.body;
my $new = Email::Simple.create(header => [['To', '[email protected]'],
['From', '[email protected]'],
['Subject', 'test']],
body => 'This is a test.');
say ~$new;Methods
new(Str $text, :$header-class = Email::Simple::Header)new(Array $header, Str $body, :$header-class = Email::Simple::Header)Alias of
.createwith positional arguments.create(Array :$header, Str :$body, :$header-class = Email::Simple::Header)header($name, :$multi)Returns the email header with the name
$name. If:$multiis not passed, then this will return the first header found. If:$multiis set, then this will return a list of all headers with the name$name(note the change from v1.0!)header-set($name, *@lines)Sets the header
$name. Adds one$nameheader for each additional argument passed.header-names()Returns a list of header names in the email.
headers()Alias of
header-names()header-pairs()Returns the full header data for an email.
$eml.header-pairs(); # --> [['Subject', 'test'], ['From', '[email protected]']]body()Returns the mail body. Note that this module does not try to do any decoding, it just returns the body as-is.
body-set($text)Sets the mail body to
$text. Note that this module does not try to properly encode the body.as-string(),Str()Returns the full raw email, suitable for piping into sendmail.
crlf()header-obj()header-obj-set($obj)
AUTHOR
Andrew Egeler
Source can be located at: https://github.com/raku-community-modules/Email-Simple . Comments and Pull Requests are welcome.
COPYRIGHT AND LICENSE
Copyright 2012 - 2018 Andrew Egeler
Copyright 2019 - 2022 Raku Community
All files in this repository are licensed under the terms of Create Commons License; for details please see the LICENSE file