2009/7/31 Tony Esposito <tony1234567893@yahoo.co.uk>:
> I am using Perl 5.8.x, Windows XP SP2 and Novell GroupWise email client.
> I have written a program to send an email which contains HTML. Issue is that in the email body the 'body' shows up as HTML text and GroupWise has the choice to read it in HTML grayed-out (for this email only). In other words, I get no processed HTML just the HTML text and I can not choose to read it in HTML (btw - have no such issue with other emails from other sources containg HTML. I can choose to read it in HTML via GroupWise w/o issues).
[quoted text clipped - 26 lines]
> sub do_email() {
> use Net::SMTP;
Take a look at MIME::Lite[1]. HTML emails are multi-part and as far I
know, that not Net::SMTP's game.
HTH,
Dp.
1) http://search.cpan.org/~rjbs/MIME-Lite-3.024/lib/MIME/Lite.pm

Signature
To unsubscribe, e-mail: beginners-unsubscribe@perl.org
For additional commands, e-mail: beginners-help@perl.org
http://learn.perl.org/
Tony Esposito - 31 Jul 2009 23:06 GMT
Thanks ... I'll give that a shot ... any other suggestions are welcomed ... thank again, Dermot.
________________________________
From: Dermot <paikkos@googlemail.com>
To: Tony Esposito <tony1234567893@yahoo.co.uk>
Cc: Beginners Perl <beginners@perl.org>
Sent: Friday, 31 July, 2009 17:00:45
Subject: Re: Perl and HTML
2009/7/31 Tony Esposito <tony1234567893@yahoo.co.uk>:
> I am using Perl 5.8.x, Windows XP SP2 and Novell GroupWise email client.
> I have written a program to send an email which contains HTML. Issue is that in the email body the 'body' shows up as HTML text and GroupWise has the choice to read it in HTML grayed-out (for this email only). In other words, I get no processed HTML just the HTML text and I can not choose to read it in HTML (btw - have no such issue with other emails from other sources containg HTML. I can choose to read it in HTML via GroupWise w/o issues).
[quoted text clipped - 26 lines]
> sub do_email() {
> use Net::SMTP;
Take a look at MIME::Lite[1]. HTML emails are multi-part and as far I
know, that not Net::SMTP's game.
HTH,
Dp.
1) http://search.cpan.org/~rjbs/MIME-Lite-3.024/lib/MIME/Lite.pm
--
To unsubscribe, e-mail: beginners-unsubscribe@perl.org
For additional commands, e-mail: beginners-help@perl.org
http://learn.perl.org/