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

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: auto mail
by GrandFather (Saint) on Sep 16, 2010 at 06:12 UTC
Re: auto mail
by zentara (Cardinal) on Sep 16, 2010 at 10:17 UTC
    Google "perl mail attachments" for hundreds of examples, or look at this simple example:
    #!/usr/bin/perl use warnings; use strict; use MIME::Lite; $MIME::Lite::AUTO_CONTENT_TYPE="true"; my $msg = MIME::Lite->new( From => 'zentara' , To => 'zentara@z.net' , Subject => 'test attach', Type => 'multipart/mixed' ); $msg->attach( Path => './mailbody' , Filename => 'message.txt' ); $msg->attach( Path => "./logfile_07-24-2005.tar.gz" , Disposition => "attachment" ); $msg->send; print "Mission accomplished\n";

    I'm not really a human, but I play one on earth.
    Old Perl Programmer Haiku ................... flash japh