in reply to Re^2: Attachments with NET::SMTP
in thread Attachments with NET::SMTP

You can set up your web script in that way, but it seems an awfully roundabout and wasteful way to transfer files. Why don't you just have the user upload the file to the server where you can access it after receiving the email (you could put the file path into the generated email)? Transferring files via email has a few problematic aspects, most ISPs these days block certain attachment file types for example, so why do it unneccessarily?


A computer is a state machine. Threads are for people who can't program state machines. -- Alan Cox

Replies are listed 'Best First'.
Re^4: Attachments with NET::SMTP
by Anonymous Monk on Dec 27, 2005 at 10:24 UTC
    I had thought about that and it does seam wiser, can you suggest any modules to look at for uploading to my server?

      CGI::Upload ?


      A computer is a state machine. Threads are for people who can't program state machines. -- Alan Cox