use Mail::Sender; eval { (new Mail::Sender) ->OpenMultipart({ to => 'someone@somewhere.com', subject => 'Alternatives with images', # debug => 'c:\temp\zkMailFlow.log', multipart => 'related', }) ->Part({ctype => 'multipart/alternative'}) ->Part({ ctype => 'text/plain', disposition => 'NONE', msg => <<'*END*' }) A long mail message. *END* ->Part({ctype => 'text/html', disposition => 'NONE', msg => <<'*END*'})
mail
message.