in reply to Mail attachment with html message body

My favorite module for that is MIME::Lite.
  • Comment on Re: Mail attachment with html message body

Replies are listed 'Best First'.
Re^2: Mail attachment with html message body
by mailmeakhila (Sexton) on Apr 16, 2012 at 22:17 UTC
    $emaildata="<h1>Hello World</h1>"; my $msg = MIME::Lite->new ( Subject=>"Hello World", From=>'youremail@yourdomain', To=>'destinationemailid', Type=>'text/html', Data=>$emaildata, ); MIME::Lite->send('smtp',"localhost:25",Debug=>0,Timeout=>60); $msg->send();