in reply to Re: Perl and HTML E-mail
in thread Perl and HTML E-mail

Yeah, that was what I figured out myself as well, but I don't know how would I do change the content type header with Net::SMTP module?

I found MIME::Lite::TT::HTML and even though I find the template solution to be a bit too much, it is really simple to use.

Replies are listed 'Best First'.
Re^3: Perl and HTML E-mail
by Anonymous Monk on Feb 12, 2009 at 08:43 UTC
    $smtp=Net::SMTP->new('your smtp server'); $smtp->mail('your email address'); $smtp->to('Your reciepient'); $smtp->data(); $smtp->datasend("Content-type:TEXT/html,charset=utf-8\n"); $smtp->datasend("To: someone\@somedomain.com\n"); $smtp->datasend("\n"); $smtp->datasend("<html>Your html here!</html>"); $smtp->dataend(); $smtp->quit();