in reply to Sending email with both html and plaintext
my $message = Email::MIME->create_html( header => [ To => $email, From => $from, Subject => $subject, ], body => $html, text_body => $text, ); sendmail( $message, { transport => $transport } ); [download]