The sendmail logs will reveal a lot of details, for sure, but this may give you some hints in case you can't find the logs: open (MAIL, "|$mailprog -t >> XXX 2>&1"); Replace XXX with a filepath residing in a dir your www-user can write to, perhaps /tmp/xyz.log (which will not survive a reboot).

Add the empty line after headers as tobyink suggested. And also save the mail contents to local file for further debugging, with something like:

my $fh; if( ! open($fh, '>>', 'XXX') ){ # log error } else { print $fh $email_message."\n-------------\n"; close $fh } $mailprog = '/usr/sbin/sendmail'; open (MAIL, "|$mailprog -t >> XXX 2>&1"); print MAIL $email_message; if( ! close (MAIL) ){ # replace this with your error-logging facility print "Content-type: text/html\n\n"; print "error, command failed with ".($?>>8)."<br>\n" print "message was:<br>\n${email_message}<br>\nEND message<br>\n"; } else { # EDIT: wrapped this in else! print "Location: application-submitted \n\n"; }

In reply to Re: sendmail working for me but not another by bliako
in thread sendmail working for me but not another by kickingchicken

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.