print MAIL "Content-Type: text/html";
print MAIL "To: you@example.com";
print MAIL "From: me@examnple.com";
print MAIL "Subject: Hi\n\n";
print MAIL $email;
use Mail::Sendmail;$message = '<html><b>This is the text of your email</b></html>';
%mail = ('To' => 'whoever@example.com',
'From' => 'My Name <someone@example.com>',
'Content-Type' => 'text/html; charset="iso-8859-1"',
'Subject' => 'Newsletter',
'Message' => $message);
sendmail(%mail);