emailing an attachment

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default emailing an attachment

    Greetings,

    I'm looking for some help sending an e-mail attachment via a perl CGI.
    I'm an experienced programmer, but a Perl moron.

    Previous working e-mail samples in my department use Mail::Mailer to
    send email. However, so far, I cannot find a way to send an
    attachment using this. Am I missing something?

    If I cannot send an attachment using the Mailer module, what is the
    simplest method to pursue? I have tried SMTP and MIMELite with no
    success. My lack of success is primarily dependent on my lack of
    knowledge. However, I am also battling differing Perl environments in
    test/production/development pc, unfamiliarity with the mail
    server...there are just so many areas where I could be going wrong.

    So. If you were as clueless as I am, where would you start to send an
    e-mail attachment? Even a module name will help me in the right
    direction. Thanks in advance for any help out there.

    Cheers!
    Sheri
    sheri Guest

  2. Similar Questions and Discussions

    1. Bulk eMailing
      How could it be possible to automatically delete subscriber?s email address and its associated record from an Access database after two successive...
    2. Extension for emailing attachment?
      I am looking for a dreamweaver extension (php) that will allow the visitor to attach a file to a form for e-mailing. Ideally, the extension will...
    3. FDF emailing
      I have been reading everything in here about this but still need 1 question answered. I know that you cannot email back a form with Acrobat reader...
    4. emailing with an attachment that has fetched from db (longblob)
      I am trying to send an email with an attachment. The problem is the attachment is stored in db where I have created a longblob field that contains...
    5. OT? Emailing HTML
      Hey folks sorry if this is OT but I cannot seem to find any info through google about this. Does any one have any links to a tutorial about HTML...
  3. #2

    Default Re: emailing an attachment

    sheri wrote:
    > I'm looking for some help sending an e-mail attachment via a perl CGI.
    Mail::Sender is a module whose explicit purpose is to send mails with
    attachments:

    [url]http://search.cpan.org/author/JENDA/Mail-Sender-0.8.06/Sender.pm[/url]

    --
    Gunnar Hjalmarsson
    Email: [url]http://www.gunnar.cc/cgi-bin/contact.pl[/url]

    Gunnar Hjalmarsson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139