metaperl has asked for the wisdom of the Perl Monks concerning the following question:

It appears that Email::Sender is The Only Email Module You Should Use because:
  1. of who wrote it
  2. It is the pet of the Perl Email Project
  3. all the other cool people who have supplied add-ons to it
  4. Now, granted those are all superficial reasons. And I could just use
    MIME::Lite to get my job done, but I'm wondering why the Email::Sender docs have nothing to say about sending attachments.

    How can I send an attachment using Email::Sender?

    • Comment on How can I send an attachment using Email::Sender?

Replies are listed 'Best First'.
Re: How can I send an attachment using Email::Sender?
by afoken (Chancellor) on Nov 22, 2011 at 16:32 UTC

    It seems Email::Sender is only responsible for wrapping a message in an envelope (i.e. prefixing it with a set of headers) and for handing it over to a transporter. You need to compose the message including attachments in some other module.

    Update:

    Email::MIME looks promising ...

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
Re: How can I send an attachment using Email::Sender?
by Anonymous Monk on Nov 23, 2011 at 03:48 UTC
    LOL