in reply to MIME Lite HTML with Attachments
You have
which should be$mailHTML::MIME::Lite->attach( Type =>'text/html; charset="iso-8859-1" +', Data => '<b>Brought to you now!</b>', );
precisely for the same reasons you used it as$mailHTML->attach( Type =>'text/html; charset="iso-8859-1"', Data => '<b>Brought to you now!</b>', );
towards the end of your script. The token (is that the right word?) $mailHTML has all the methods "embedded" -- you don't need to try to specify which parts of which inherited interfaces you want to play with; it has them "natively" so to speak.my $MIMEmail = $mailHTML->parse("$URL");
This presupposes that the ::Lite extension does properly inherit, of course.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: MIME Lite HTML with Attachments
by knexus (Hermit) on Sep 06, 2003 at 00:15 UTC |