The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Email::Sender::Server::Message - Eventual Email Message Object

VERSION

version 1.000001

SYNOPSIS

    use Email::Sender::Server::Message;

    my $message = Email::Sender::Server::Message->new(
        to          => '...',
        from        => '...',
        subject     => '...',
        cc          => '...',
        bcc         => '...',
        reply_to    => '...',
        message     => '...'
        attachments => [],
        headers     => {},
    );

    $message->send;

DESCRIPTION

Email::Sender::Server::Message is an interface for sending email messages in Email::Sender::Server. Please see Emailesque for information on arguments and configuration of email messages.

AUTHOR

Al Newkirk <anewkirk@ana.io>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Al Newkirk.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.