Very curious about this one -- enough so that this is my first post at the Monastery in a LONG time. Anyway, I have the following bit of code (which is in the sub &sendmail):
use MIME::Lite; my $to = 'anthony@currentmarketing.com'; my $fax = '/tmp/1049811816.pdf'; # Start with a simple text message: my $msg = MIME::Lite->new( From =>'anthony@domain.com', To =>$to, Subject =>'FAX for you.', Type =>'TEXT', Data =>"Here is a fax for you!\n\n:)" ); print "created msg\n"; # Attach a part ... the make the message a multipart automatically: $msg->attach(Type =>'application/pdf', Path =>$fax, Filename =>'fax.pdf', ); print "attached pdf\n"; # Now send? $msg->send_by_smtp('216.26.151.48'); print "sent by smtp worked\n"; print "Sent $fax to $to\n";
When I run it via the command line, I get the following output:
[notsoevil@dragon anthony]# ./convert2.pl created msg attached pdf
It's hanging before the send, so to help see why I run perl -d:
[notsoevil@dragon anthony]# perl -d convert2.pl Default die handler restored. Loading DB routines from perl5db.pl version 1.07 Editor support available. Enter h or `h h' for help, or `man perldebug' for more help. main::(convert2.pl:61): &sendmail(); DB<1> n created msg attached pdf sent by smtp worked Sent /tmp/1049811816.pdf to anthony@currentmarketing.com Debugged program terminated. Use q to quit or R to restart, use O inhibit_exit to avoid stopping after program termination, h q, h R or h O to get additional info. DB<1> q
Er, so it runs via the perl debugger, but not normally via the command line. If I comment out the 'attach' section and just send the text, it does run from the command line. So, needless to say, I'm now totally confused.

--
notsoevil
--
Jeremiah 49:32 - And their camels shall be a booty. . .


In reply to Runs with perl -d, but ... by notsoevil

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.