Mail-Sender

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

            file => ['/file1.txt'], # file names
            content_id => '#', # for auto-increment number, or * for filename
        });

    Sends a file as a separate part of the mail message. Only in multi-part
    mode.

 Body

        # set parameters in an ordered list
        # -- charset, encoding, content-type
        $sender = $sender->Body('US-ASCII', '7BIT', 'text/plain');
        # OR use a hashref
        $sender = $sender->Body({
            charset => 'US-ASCII', # default
            encoding => '7BIT', # default
            ctype => 'text/plain', # default
            msg => '',
        });

    Sends the head of the multi-part message body. You can specify the

lib/Mail/Sender.pm  view on Meta::CPAN

        disposition => 'attachment; filename=*', # default
        file => ['/file1.txt'], # file names
        content_id => '#', # for auto-increment number, or * for filename
    });

Sends a file as a separate part of the mail message. Only in multi-part mode.

=head2 Body

    # set parameters in an ordered list
    # -- charset, encoding, content-type
    $sender = $sender->Body('US-ASCII', '7BIT', 'text/plain');
    # OR use a hashref
    $sender = $sender->Body({
        charset => 'US-ASCII', # default
        encoding => '7BIT', # default
        ctype => 'text/plain', # default
        msg => '',
    });

Sends the head of the multi-part message body. You can specify the charset and the encoding.



( run in 1.177 second using v1.01-cache-2.11-cpan-524268b4103 )