Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hello kind Monks

The following code

open (MAIL,"| $SEND_MAIL"); print MAIL "To: $to\n"; print MAIL "From: $fromaddr\n"; print MAIL "Reply-to: $replyaddr\n" if $replyaddr; print MAIL "Subject: extra $subject\n"; print MAIL "Mime-Version: 1.0\n"; print MAIL "Content-type: text/html; charset=\"iso-8859-1\"\n"; print MAIL "X-Mailer: Perl Socket Mailer\n\n"; print MAIL "$message"; print MAIL "\n.\n"; close(MAIL);

happily sends plain text, but incorrectly, also sends html code as plain text (showing the code).

The lines

print MAIL "Mime-Version: 1.0\n"; print MAIL "Content-type: text/html; charset=\"iso-8859-1\"\n";

are not appearing in the headers of the sent email.

When I include html in the message, there's an error message in the email headers:

X-me2uweb-MailScanner-SpamCheck: not spam, SpamAssassin (cached, +score=0.986, required 5, BAYES_05 -1.11, HTML_MESSAGE 0.00, HTML_MISSING_CTYPE 2.10, HTML_SHORT_CENTER 0.00, NO_RELAYS -0. +00)

which underlines that the content type is missing.

I'm wondering if the problems is in the perl code, or in the way that sendmail operates or the Red Hat Linux server we're running the script on is set up?

Any pointers or answers gratefully received.

Many thanks

Bob


In reply to Problem sending html using sendmail by Bob H

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-04-19 17:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found