the script hangs up when i try to send mail with attachments using MAIL::Sender...???

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

  1. #1

    Default the script hangs up when i try to send mail with attachments using MAIL::Sender...???

    As said in the topic...
    when i try to send an e-mail message using Mail::Sender the script hangs up
    before execution of

    $sender -> OpenMultipart(...);

    don't know what to do... when i run my script without any files attached it
    works but with them it doesn't ....
    Bob


    Robert Trzaskowski Guest

  2. Similar Questions and Discussions

    1. Mail::Sender, attachments and html together
      Hi! I'm developing a program that send mails with the content in html and also should send attachments. I am using Mail::Sender and I can do both...
    2. Mail:Sender - HTML Mail with alternatives problem
      I'm trying to generate an HTML mail with text alternatives using the mail:sender module. As everybody can see below the message was created and...
    3. Can not send mail from bash script
      Hi , I have created a little script that is running as daemon ( it is hard to say as daemon :)) ) . Then i try to send a mail and the mail is...
    4. Send mail script step
      I have a script to send mail to email addresses in a field (noted in the To: part of the mail specification. When the script is run, the...
    5. SEND MAIL script with check box
      okay - i've figured out how to make a check box into a button that performs a SEND MAIL script. but - i can't figure out how to add a step to the...
  3. #2

    Default Re: the script hangs up when i try to send mail with attachments using MAIL::Sender...???

    OK, I've dealed with the problem by myself...
    It's the clue:
    While using Mail::Sender never manipulate $/ and $\ variables....
    the script will hang up every time...
    BoB
    [email]kenzo_@gmx.de[/email]


    Użytkownik "Robert Trzaskowski" <robert@hoffmanowa.pl> napisał w wiadomo¶ci
    news:bg9jlf$1af$1@news.onet.pl...
    > As said in the topic...
    > when i try to send an e-mail message using Mail::Sender the script hangs
    up
    > before execution of
    >
    > $sender -> OpenMultipart(...);
    >
    > don't know what to do... when i run my script without any files attached
    it
    > works but with them it doesn't ....
    > Bob
    >
    >

    Robert Trzaskowski 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