Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: Sending An Attachment Using Net::SMTP

by njweatherman (Sexton)
on Mar 22, 2008 at 08:52 UTC ( [id://675604]=note: print w/replies, xml ) Need Help??


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

Is there a way to just attach the file to the email message so the user can just open the MS Word document on his / her own machine?
  • Comment on Re^2: Sending An Attachment Using Net::SMTP

Replies are listed 'Best First'.
Re^3: Sending An Attachment Using Net::SMTP
by hipowls (Curate) on Mar 22, 2008 at 09:44 UTC

    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

    • Write it all yourself
    • Use modules from CPAN

    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);

Re^3: Sending An Attachment Using Net::SMTP
by NetWallah (Canon) on Mar 22, 2008 at 15:48 UTC
    There is another option, if the person receiving the e-mail is on your network, or, if the document is accessible publicly.

    In these cases, simply send a LINK to the document via e-mail. No MIME required.

    "Publicly accessible" is intended to include SECURED access, such as via a (secured) FTP, HTTP with logon , Windows Share etc.

         "As you get older three things happen. The first is your memory goes, and I can't remember the other two... " - Sir Norman Wisdom

Re^3: Sending An Attachment Using Net::SMTP
by bart (Canon) on Mar 22, 2008 at 14:37 UTC
    Oh, you mean by magic?

    No. That's not how technology works, in the real world.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://675604]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-23 06:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found