http://qs321.pair.com?node_id=675610


in reply to Re^2: Sending An Attachment Using Net::SMTP
in thread Sending An Attachment Using Net::SMTP

When you "just" attach a document using your mail client behind the scenes it creates a multipart MIME document, encodes the attachment and embeds it into the data that is sent to the SMTP server. When you use Perl to do the same thing you also must create a multipart MIME document, encode the document and embed it the data sent to the SMTP server.

Your options are

What do you mean by "our web server will not install it"? Do you mean that your system administrator won't install it? If so install the library somewhere you have write access to. You can then add the directory to the search path Perl uses to find libraries.

perl Makefile.PL INSTALL_BASE=~njweatherman/lib make make test make install
#!/usr/lib/perl use strict; use warnings; use lib qw(~njweatherman/lib);