Reputation: 45
Anyone knows what happened to the very useful HTML::Mail package which used to be on CPAN? The package gave you the possibility of sending web pages as HTML attachment, with various options for inlining embedded content such as css and images. The package integrated nicely with whatever mail infrastructure your server had (postfix, sendmail,...).
I am moving a big old Perl driven website from Fedora into AWS and Ubuntu, and HTML::Mail is the only package I am not able to find. I can't seem to find any single substitute either, so any pointers are welcomed.
Thanks in advance.
Upvotes: 1
Views: 368
Reputation: 69314
It still seems to be there. But the fact that the module name is in red (which means it's unindexed for some reason) and the module hasn't been updated since 2008 would make me wary of using it.
There's a review of it on CPAN Ratings which says:
This module is like MIME::Lite::HTML or Email::MIME::CreateHTML. Like the former, it uses MIME::Lite, and for that reason alone I suggest you avoid it. MIME::Lite is quite buggy, and best avoided in all situations. Investigate, instead, Email::MIME::CreateHTML.
So I'd look at Email::MIME::CreateHTML instead.
Upvotes: 2