Help language development. Donate to The Perl Foundation

Email::Simple zef:raku-community-modules last updated on 2022-02-21

b1a57314aa7dc971a4ca935473994e6d1b4e3878/

Actions Status

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

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