Rand Stats

Email::Simple

zef:raku-community-modules

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', 'mail@example.com'],
                                          ['From', 'me@example.com'],
                                          ['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