http://qs321.pair.com?node_id=895457

SriniK has asked for the wisdom of the Perl Monks concerning the following question:

Hi, I want to send high importance mail to Lotus notes. I am using Mime::lite. I have used 'X-Priority' and 'X-MSMail-Priority' but its not working. Is there any to do so
$msg = MIME::Lite->new( From => 'xxx@xxx.xxx', To => 'xxx.xxx@xxx.xxx', Subject => 'Tickets not having specific owner', 'X-Priority' => 1, 'X-MSMail-Priority' => 'High', Type => 'multipart/mixed'); $msg->attach( Type =>'text/html', Data => qq{ XXXXXX}); $msg->send();
Thanks in advance