Bob H has asked for the wisdom of the Perl Monks concerning the following question:
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
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problem sending html using sendmail
by marto (Cardinal) on Nov 17, 2009 at 16:41 UTC | |
|
Re: Problem sending html using sendmail
by Crackers2 (Parson) on Nov 17, 2009 at 17:02 UTC | |
by gmargo (Hermit) on Nov 17, 2009 at 18:37 UTC | |
|
Re: Problem sending html using sendmail
by keszler (Priest) on Nov 17, 2009 at 17:05 UTC |